Hello world application using nodejs and express

Hello world application using nodejs and express

In this article, we will learn how to create a hello world simple node js application in our application using node js and express. Nodejs is open source framework it used the javascript server and it is run on different os like as Windows, Linux, Unix, and Mac, etc. so first we will check the node is install or no in our system, if not in our system, then after we will go to follow below Url and install node js.

Let’s go and follow the below step for how to display hello world in our application using node js and exress.js.

Step 1: Create the Application Directory.

First, we will open the command prompt and create the application directory. for this, you can follow the below command.

Step 2: Create an application using npm init

The “npm init” command through we can create a new package.json file in our application directory. when we build a new app at that time we use this command. Node.js will need to have a package.json file because includes the application related packages and application data.

Here below command helps to initialization our application.

Step 3: Install Express Package

Expess.js is a free and open-source framework and it’s a web application framework for Node.js. we can manage routes, create restful API, handle the request and response, and also create MVC structure using the express.js. Npm stands for the node package manager. npm, help to install node packages and manage the types of dependencies.

Here below command help to install express package.

Step 4: Create New File and Save

First, we will make a new file and paste follow the below code in our file and save as app.js.

Step 5: Run Our Application

Finally, We will run our application using the below command.

Please follow and like us: