Step to Run Node Application

Step 1: To run the program type the following command in terminal

node firstprogram.js  

Step 2: Then type the following URL in the browser

http://127.0.0.1:8080/

Output:



Node First Application

Node is an open-source, cross-platform server environment that executes JavaScript using the V8 JavaScript Engine. Node helps to write front-end and back-end code in the same language. It helps to write efficient code for real-time applications.

As a beginner in development, most developers find it difficult to create their first Node.js Application. In this article, we will help you in building Node applications.

We will discuss the following two approaches to create our first application in Node:

  • Creating Console-based Node Application
  • Creating Web-based Node Application

Similar Reads

Creating Console-based Node Application

The Node console-based applications are run using the Node command prompt. The console module in Node.js provides a simple debugging console. Node is a global console that can be used for synchronous as well as asynchronous communication....

Creating Web-based Node Application

...

Steps to Create Node Application (Web-Based)

...

First Node Application

A web-based Node application consists of the following three important components:...

Step to Run Node Application:

Step 1: Import required modules...