Ruslan Rocks Unblocked Games

Node.js HTTP Server Example

Node.js HTTP Server Example

If you want to create a web server using Node.js, you can utilize the built-in http module. This module provides the functionality necessary to create an HTTP server that can listen to incoming HTTP requests from web browsers or other client applications.

Creating a Basic http Server with Node.js

What is a server and how does Node.js use it?

A server is a software program or hardware device that provides functionality for other programs or devices, called clients. Node.js uses the built-in http module to create a web server. The http module allows Node.js to listen for incoming HTTP requests from clients such as web browsers.

How do you create an HTTP server using Node.js?

To create an HTTP server using Node.js, you first need to import the http module using the require statement. Then you can use the createServer method to create the server and pass in a callback function that will handle incoming HTTP requests.

For example:

const http = require('http');

http.createServer((request, response) => {
  response.writeHead(200, {'Content-Type': 'text/plain'});
  response.end('Hello World\n');
}).listen(8080);

console.log('Server running at http://127.0.0.1:8080/');

In this example, we create a simple HTTP server that listens on port 8080. The createServer method takes a callback function that will be called whenever there is an incoming HTTP request. The callback function takes two arguments, request and response, which represent the incoming request and the outgoing response object, respectively.

The response.writeHead method is used to set the status code and the HTTP headers of the response, while the response.end method is used to send the response back to the client with the specified contents.

How do you create an HTTP server that serves an HTML page from a file?

To serve an HTML page from a file using an HTTP server created with Node.js, you can use the fs module to read the HTML file and then send it to the client as the HTTP response.

For example:

const http = require('http');
const fs = require('fs');

http.createServer((request, response) => {
  if (request.url === '/') {
    fs.readFile('index.html', (err, data) => {
      if (err) {
        response.writeHead(404);
        response.end('File not found');
      } else {
        response.writeHead(200, {'Content-Type': 'text/html'});
        response.end(data);
      }
    });
  }
}).listen(8080);

console.log('Server running at http://127.0.0.1:8080/');

In this example, we check if the incoming request URL is the root URL, '/', and if so, we read the contents of the 'index.html' file using the fs.readFile method. If there is an error reading the file, we send a 404 status code to the client. If the file is successfully read, we set the HTTP header to 'text/html' and send the file contents back to the client as the HTTP response.

Handling http Request and Response Objects

What is an HTTP request object and how does it work?

An HTTP request object represents the incoming client request that is received by the HTTP server. It contains information about the request, such as the HTTP method used, the URL requested, and any data submitted with the request. In Node.js, the HTTP request object is passed as the first argument to the callback function for the createServer method.

You can access the properties of the HTTP request object to handle the request in your server code. For example, you can get the URL of the request using the request.url property and extract the query string parameters from it.

How do you create an HTTP request object that contains JSON data?

You can create an HTTP request object that contains JSON data by setting the 'Content-Type' header to 'application/json' and using the JSON.stringify method to convert the JSON object to a string before sending it in the HTTP request body.

For example:

const http = require('http');

const data = {name: 'John Doe', age: 30};
const options = {
  hostname: 'localhost',
  port: 8080,
  path: '/api/users',
  method: 'POST',
  headers: {
    'Content-Type': 'application/json'
  }
};

const req = http.request(options, (res) => {
  console.log(`statusCode: ${res.statusCode}`);

  res.on('data', (d) => {
    process.stdout.write(d);
  });
});

req.on('error', (error) => {
  console.error(error);
});

req.write(JSON.stringify(data));
req.end();

In this example, we create an HTTP request object that sends a POST request to '/api/users' with JSON data containing the name and age properties. The options object contains the hostname, port, path, method, and headers of the HTTP request.

We then create an HTTP request using the http.request method and pass in the options and a callback function that will be called when the response is received. We also set up error handling for the request using the 'error' event.

The req.write method is used to send the JSON data in the request body, while the req.end method is used to signal that the HTTP request is complete and should be sent to the server.

How do you handle HTTP responses in Node.js?

In Node.js, you can handle HTTP responses using the response object that is passed as the second argument to the callback function for the createServer method.

You can use the response.writeHead method to set the status code and the HTTP headers of the response, and the response.end method to send the response back to the client with the specified contents.

Creating an HTTP server with Node.js is easy and straightforward using the built-in http module. By handling incoming HTTP requests and sending responses, you can create powerful web applications and APIs that can handle a variety of requests and data formats.

Sources

DigitalOcean

Tutorials Teacher

GeeksforGeeks

Related articles

Ruslan Osipov
Written by author: Ruslan Osipov