Node.js – First Application

Node.js – First Application ”; Previous Next When learning a new language or a framework, the first application to write is a Hello World program. Such a program displays the Hello World message. This illustrates the basic syntax of the language and also serves to test whether the installation of the language compiler has been correctly done or not. In this chapter, we shall write a Hello World application in Node.js. Console Application Node.js has a command-line interface. Node.js runtime also allows you to execute JavaScript code outside the browser. Hence, any JavaScript code can be run in a command terminal with Node.js executable. Save the following single line JavaScript as hello.js file. console.log(“Hello World”); Open a powershell (or command prompt) terminal in the folder in which hello.js file is present, and enter the following command − PS D:nodejs> node hello.js Hello World The Hello World message is displayed in the terminal. Creating Node.js Application To create a “Hello, World!” web application using Node.js, you need the following three important components − Import required modules − We use the require directive to load Node.js modules. Create server − A server which will listen to client”s requests similar to Apache HTTP Server. Read request and return response − The server created in an earlier step will read the HTTP request made by the client which can be a browser or a console and return the response. Step 1 – Import Required Module We use the require directive to load the http module and store the returned HTTP instance into an http variable as follows − var http = require(“http”); Step 2 – Create Server We use the created http instance and call http.createServer() method to create a server instance and then we bind it at port 3000 using the listen method associated with the server instance. Pass it a function with parameters request and response. The createserver() method has the following syntax − http.createServer(requestListener); The requestlistener parameter is a function that executes whenever the server receives a request from the client. This function processes the incoming request and forms a server reponse. The requestlistener function takes request HTTP request and response objects from Node.js runtime, and returns a ServerResponse object. listener = function (request, response) { // Send the HTTP header // HTTP Status: 200 : OK // Content Type: text/plain response.writeHead(200, {”Content-Type”: ”text/html”}); // Send the response body as “Hello World” response.end(”<h2 style=”text-align: center;”>Hello World</h2>”); }; The above function adds the status code and content-type headers to the ServerResponse, and Hello World message. This function is used as a parameter to createserver() method. The server is made to listen for the incoming request at a particular port (let us assign 3000 as the port). Step 3 – Testing Request & Response Write the sample implementation to always return “Hello World”. Save the following script as hello.js. http = require(”node:http”); listener = function (request, response) { // Send the HTTP header // HTTP Status: 200 : OK // Content Type: text/html response.writeHead(200, {”Content-Type”: ”text/html”}); // Send the response body as “Hello World” response.end(”<h2 style=”text-align: center;”>Hello World</h2>”); }; server = http.createServer(listener); server.listen(3000); // Console will print the message console.log(”Server running at http://127.0.0.1:3000/”); In the PowerShell terminal, enter the following command. PS D:nodejs> node hello.js Server running at http://127.0.0.1:3000/ The program starts the Node.js server on the localhost, and goes in the listen mode at port 3000. Now open a browser, and enter http://127.0.0.1:3000/ as the URL. The browser displays the Hello World message as desired. Print Page Previous Next Advertisements ”;

Node.js – Home

Node.js Tutorial Table of content What is Node.js? Why Learn Node.js? How to Install Node.js? Applications of Node.js Example of Node.js Application Prerequisites to Learn Node.js Getting Started with Node.js Frequently Asked Questions on Node.js PDF Version Quick Guide Resources Job Search Discussion Node.js is a powerful JavaScript runtime environment, built on Google Chrome”s V8 JavaScript Engine. Node.js is open-source and cross platform. What is Node.js? Node.js is not a programming language like Python, Java or C/C++. Node.js is a runtime, similar to Java virtual machine, that converts JavaScript code into machine code. It is , widely used by thousands of developers around the world to develop I/O intensive web applications like video streaming sites, single-page applications, and other web applications. With Node.js, it is possible to use JavaScript as a backend. With JavaScript already being a popular choice for frontend development, application development around MERN (MongoDB, Express, React and Node.js.) and MEAN (MongoDB, Express, Angular and Node.js) stacks is being increasingly employed by developers. Why Learn Node.js? Node.js can be used to full fill multiple purpose like server-side programming, build APIs, etc. Node.js is used for server-side programming with JavaScript. Hence, you can use a single programming language (JavaScript) for both front-end and back-end development. Node.js implements asynchronous execution of tasks in a single thread with async and await technique. This makes Node.js application significantly faster than multi-threaded applications. Node.js is being used to build command line applications, web applications, real-time chat applications, REST APIs etc. How to Install Node.js? Different operating systems required different steps to install Node.js, please follow the provided methods according to your installed operating system. Node.js Installation on Windows Node.js Installation on Linux – Ubuntu Applications of Node.js Node.js is used for building different type of applications. Some of the application types are listed below. Streaming applications: Node.js can easily handle real-time data streams, where it is required to download resources on-demand without overloading the server or the user’s local machine. Node.js can also provide quick data synchronization between the server and the client, which improves user experience by minimizing delays using the Node.js event loop. Single page apps: Node.js is an excellent choice for SPAs because of its capability to efficiently handle asynchronous calls and heavy input/output(I/O) workloads. Data driven SPAs built with Express.js are fast, efficient and robust. Realtime applications: Node.js is ideal for building lightweight real-time applications, like messaging apps interfaces, chatbots etc. Node.js has an event- based architecture, as a result has an excellent WebSocket support. It facilitates real-time two-way communication between the server and the client. APIs: At the heart of Node.js is JavaScript. Hence, it becomes handling JSON data is easier. You can therefore build REST based APIs with Node.js. These are some of the use cases of Node.js. However, its usage is not restricted to these types. Companies are increasingly employing Node.js for variety of applications. Example of Node.js Application To create a basic Hello World application in Node.js, save the following single line JavaScript as hello.js file. console.log(“Hello World”); Open a powershell (or command prompt) terminal in the folder in which hello.js file is present, and enter the following command. The “Hello World” message is displayed in the terminal. PS D:nodejs> node hello.js Hello World To create a “Hello, World!” web application using Node.js, save the following code as hello.js: http = require(”node:http”); listener = function (request, response) { // Send the HTTP header // HTTP Status: 200 : OK // Content Type: text/html response.writeHead(200, {”Content-Type”: ”text/html”}); // Send the response body as “Hello World” response.end(”<h2 style=”text-align: center;”>Hello World</h2>”); }; server = http.createServer(listener); server.listen(3000); // Console will print the message console.log(”Server running at http://127.0.0.1:3000/”); Run the above script from command line. C:nodejs> node hello.js Server running at http://127.0.0.1:3000/ The program starts the Node.js server on the localhost, and goes in the listen mode at port 3000. Now open a browser, and enter http://127.0.0.1:3000/ as the URL. The browser displays the Hello World message as desired. Prerequisites to Learn Node.js Before proceeding with this tutorial, you should have a basic understanding of JavaScript. As we are going to develop web-based applications using Node.js, it will be good if you have some understanding of other web technologies such as HTML, CSS, AJAX, etc. Getting Started with Node.js This tutorial is designed for software programmers who want to learn the Node.js and its architectural concepts from basics to advanced. This tutorial will give you enough understanding on all the necessary components of Node.js with suitable examples. Basics of Node.js Before going deep into nodejs you should familier with fundamentals of nodejs like environment setup, REPL terminal, NPM, Callbacks, Events, Objects, etc. Node.js Introduction Node.js Environment Setup Node.js First Application Node.js REPL Terminal Node.js Command Line Options Node.js Package Manager (NPM) Node.js Callbacks Concept Node.js Upload Files Node.js Send an Email Node.js Events Node.js Event Loop Node.js Event Emitter Node.js Debugger Node.js Global Objects Node.js Console Node.js Process Node.js File System Node.js Streams Node.js Scaling Application Node.js Packaging Node.js Modules Node.js modules provides a collection of functions that are used to perform different operations as per the requirements. All the improtant modules are listed below. Node.js Assert Module Node.js Buffer Module Node.js Console Module Node.js DNS Module Node.js OS Module Node.js Path Module Module Node.js Query String Tutorialspoint Node.js URL Tutorialspoint Node.js Utility Tutorialspoint Node.js V8 Tutorialspoint Node.js Jobs and Salary Node.js. is a popular tool for almost any kind of project. After Learning Node.js you can get job on different job profiles. Node.js Developer – Salary ranges in between ₹ 1.2 Lakhs to ₹ 12.6 Lakhs with an average annual salary of ₹ 5.7 Lakhs. Node.js Backend Developer – Salary ranges in between ₹ 1.2 Lakhs to ₹ 11.0 Lakhs with an average annual salary of ₹ 4.7 Lakhs. Frequently Asked Questions about Node.js Is Node.js Free to Use? Node.js is an open-source and cross-platform server framework. It is completely free to use on all the OS platforms – Windows, Linux, MacOS etc. Can Node.js