Node.js, MySQL & Express: Simple Add, Edit, Delete, View (CRUD)

This article shows how you can create a simple CRUD (Create, Read, Update, Delete) application in Node.js using MySQL as database. We will also be using Express Framework to build this Node.js web application. We will be using EJS as templating engine. We will be using HTTP Methods like GET, PUT, POST, DELETE to make … Read more

Node.js & Express: Templating using EJS

This article show how you can use Embedded Javascript (EJS) in your Node.js & Express application. EJS is an open-source Javascript Template Library. There are different other Javascript Templating languages/libraries like Mustache, Pug, Jade, etc. which can also be used in your Node.js & Express application. This tutorial uses EJS as the templating language for … Read more

Node.js & Express Framework: Basic Introduction & Hello World Example [Beginner Tutorial]

This article shows how you can use Express Framework for creating Web based Application in Node.js. Express is a free and open-source Node.js web application framework. Create a Hello World application using Express Framework Here’s a step-by-step guide: 1) Go to the folder where you want to create your new Node.js application/module. 2) In my … Read more