Build Your First HTTP Server in NodeJS

In this tutorial, we will be talking about how we can set up a simple NodeJS HTTP server with a beginner’s perspective. NodeJS is a fantastic candidate for creating web servers which are light weight and can handle a very good volume of requests.

NodeJS is shipped with several core modules out of which we will be using HTTP to set up our own HTTP server. HTTP module makes it dead simple to create an HTTP server via its simple but powerful API. Let’s create an empty file named `myFirstHTTPServer.js` and write the following code into it:
[cc lang=”javascript”]
//Lets require/import the HTTP module
var http = require(‘http’);

//Lets define a port we want to listen to
const PORT=8080;

//We need a function which handles requests and send response
function handleRequest(request, response){
response.end(‘It Works!! Path Hit: ‘ + request.url);
}

//Create a server
var server = http.createServer(handleRequest);

//Lets start our server
server.listen(PORT, function(){
//Callback triggered when server is successfully listening. Hurray!
console.log(“Server listening on: http://localhost:%s”, PORT);
});
[/cc]
Now to see the NodeJS magic simply run the server by running the file. In the terminal you can following command to run your program:

“`bash
> node myFirstHTTPServer.js
#output
Server listening on: http://localhost:8080
“`
Hurray! now open up the URL http://localhost:8080 on your browser and it should serve you the text returned from our program. Play with the path of the URL and see the message displayed.

Analysis of the above program:
Now let’s break the above program into sub blocks and see what’s happening:

Loading HTTP module
NodeJS has core modules to create `http/https` servers, hence we have to import the `http` module in order to create an HTTP Server.
[cc lang = “javascript”]
//Lets require/import the HTTP module
var http = require(‘http’);
[/cc]

Defining the handler function
We need a function which will handle all requests and reply accordingly. This is the point of entry for your server application, you can reply to requests as per your business logic.

[cc lang = “javascript”]
//We need a function which handles requests and send response
function handleRequest(request, response){
response.end(‘It Works!! Path Hit: ‘ + request.url);
}

[/cc]

 Creating and starting the server

Here we are creating a new `HTTP Server Object` and then asking it to listen to on a `port`. The `createServer` method is used to create a new server instance and it takes our handler function as the argument. Then we call `listen` on the `server` object in order to start it.
[cc lang = “javascript”]
//Create a server
var server = http.createServer(handleRequest);

//Lets start our server
server.listen(PORT, function(){
//Callback triggered when server is successfully listening. Hurray!
console.log(“Server listening on: http://localhost:%s”, PORT);
});
[/cc]

Adding in a dispatcher
Now as we have a basic *HTTP Server* running, its time we implement some real functionalities. Your server should respond differently to different URL paths and hence we require a `dispatcher`. A dispatcher is kind of router which helps in calling the desired request handler code for each particular URL path.
Now lets add a dispatcher to our program. First we will install a `dispatcher` module. There are many modules available but lets install a basic one for demo purposes:
“`bash
> npm install httpdispatcher
“`
Now we will require the dispatcher in our program, add the following line on the top:
[cc lang = “javascript”]
var dispatcher = require(‘httpdispatcher’);
[/cc]
Now lets use our dispatcher in our `handleRequest` function:

[cc lang = “javascript”]
//Lets use our dispatcher
function handleRequest(request, response){
try {
//log the request on console
console.log(request.url);
//Disptach
dispatcher.dispatch(request, response);
} catch(err) {
console.log(err);
}
}

/*
* Lets define some routes. You can move this in another file too.
*/
//For all your static(JS/CSS/Images/etc.) set the directory name(relative path).
dispatcher.setStatic(‘resources’);

//A sample GET request
dispatcher.onGet(“/page1”, function(req, res) {
res.writeHead(200, {‘Content-Type’: ‘text/plain’});
res.end(‘Page One’);
});
//A sample POST request
dispatcher.onPost(“/post1”, function(req, res) {
res.writeHead(200, {‘Content-Type’: ‘text/plain’});
res.end(‘Got Post Data’);
});
[/cc]
Now lets run the above program and try the following URL paths:

“`
GET /page1 => ‘Page One’
POST /page2 => ‘Page Two’
GET /page3 => 404
GET /resources/images-that-exists.png => Image resource
GET /resources/images-that-does-not-exists.png => 404
“`

All Done!! now you have a small simple `HTTP Server` running.

[cc lang = “html”]
body{
margin: 200px;
margin-top: 50px;
background: #fff;
padding: 40px;
border: 2px solid black;
border-radius: 30px;
height: 3650px;
}
html{
background: #eee;
}

[/cc]


by

Tags:

Recent Post

  • Transforming HR with AI Assistants: The Comprehensive Guide

    The role of Human Resources (HR) is critical for the smooth functioning of any organization, from handling administrative tasks to shaping workplace culture and driving strategic decisions. However, traditional methods often fall short of meeting the demands of a modern, dynamic workforce. This is where our Human Resource AI assistants enter —a game-changing tool that […]

  • How Conversational AI Chatbots Improve Conversion Rates in E-Commerce?

    The digital shopping experience has evolved, with Conversational AI Chatbots revolutionizing customer interactions in e-commerce. These AI-powered systems offer personalized, real-time communication with customers, streamlining the buying process and increasing conversion rates. But how do Conversational AI Chatbots improve e-commerce conversion rates, and what are the real benefits for customers? In this blog, we’ll break […]

  • 12 Essential SaaS Metrics to Track Business Growth

    In the dynamic landscape of Software as a Service (SaaS), the ability to leverage data effectively is paramount for long-term success. As SaaS businesses grow, tracking the right SaaS metrics becomes essential for understanding performance, optimizing strategies, and fostering sustainable growth. This comprehensive guide explores 12 essential SaaS metrics that every SaaS business should track […]

  • Bagging vs Boosting: Understanding the Key Differences in Ensemble Learning

    In modern machine learning, achieving accurate predictions is critical for various applications. Two powerful ensemble learning techniques that help enhance model performance are Bagging and Boosting. These methods aim to combine multiple weak learners to build a stronger, more accurate model. However, they differ significantly in their approaches. In this comprehensive guide, we will dive […]

  • What Is Synthetic Data? Benefits, Techniques & Applications in AI & ML

    In today’s data-driven era, information is the cornerstone of technological advancement and business innovation. However, real-world data often presents challenges—such as scarcity, sensitivity, and high costs—especially when it comes to specific or restricted datasets. Synthetic data offers a transformative solution, providing businesses and researchers with a way to generate realistic and usable data without the […]

  • Federated vs Centralized Learning: The Battle for Privacy, Efficiency, and Scalability in AI

    The ever-expanding field of Artificial Intelligence (AI) and Machine Learning (ML) relies heavily on data to train models. Traditionally, this data is centralized, aggregated, and processed in one location. However, with the emergence of privacy concerns, the need for decentralized systems has grown significantly. This is where Federated Learning (FL) steps in as a compelling […]

Click to Copy