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

  • How to Implement In-Order, Pre-Order, and Post-Order Tree Traversal in Python?

    Tree traversal is an essential operation in many tree-based data structures. In binary trees, the most common traversal methods are in-order traversal, pre-order traversal, and post-order traversal. Understanding these tree traversal techniques is crucial for tasks such as tree searching, tree printing, and more complex operations like tree serialization. In this detailed guide, we will […]

  • Mastering Merge Sort: A Comprehensive Guide to Efficient Sorting

    Are you eager to enhance your coding skills by mastering one of the most efficient sorting algorithms? If so, delve into the world of merge sort in Python. Known for its powerful divide-and-conquer strategy, merge sort is indispensable for efficiently handling large datasets with precision. In this detailed guide, we’ll walk you through the complete […]

  • Optimizing Chatbot Performance: KPIs to Track Chatbot Accuracy

    In today’s digital age, chatbots have become integral to customer service, sales, and user engagement strategies. They offer quick responses, round-the-clock availability, and the ability to handle multiple users simultaneously. However, the effectiveness of a chatbot hinges on its accuracy and conversational abilities. Therefore, it is necessary to ensure your chatbot performs optimally, tracking and […]

  • Reinforcement Learning: From Q-Learning to Deep Q-Networks

    In the ever-evolving field of artificial intelligence (AI), Reinforcement Learning (RL) stands as a pioneering technique enabling agents (entities or software algorithms) to learn from interactions with an environment. Unlike traditional machine learning methods reliant on labeled datasets, RL focuses on an agent’s ability to make decisions through trial and error, aiming to optimize its […]

  • Understanding AI Predictions with LIME and SHAP- Explainable AI Techniques

    As artificial intelligence (AI) systems become increasingly complex and pervasive in decision-making processes, the need for explainability and interpretability in AI models has grown significantly. This blog provides a comprehensive review of two prominent techniques for explainable AI: Local Interpretable Model-agnostic Explanations (LIME) and Shapley Additive Explanations (SHAP). These techniques enhance transparency and accountability by […]

  • Building and Deploying a Custom Machine Learning Model: A Comprehensive Guide

    Machine Learning models are algorithms or computational models that act as powerful tools. Simply put, a Machine Learning model is used to automate repetitive tasks, identify patterns, and derive actionable insights from large datasets. Due to these hyper-advanced capabilities of Machine Learning models, it has been widely adopted by industries such as finance and healthcare.  […]

Click to Copy