How can you create a simple HTTP server in Node.js?

Question :

How can you create a simple HTTP server in Node.js?

You can create a simple HTTP server in Node.js using the built-in http module. Here's an example:

const http = require('http');
const server = http.createServer((req, res) => {
  res.statusCode = 200;
  res.setHeader('Content-Type', 'text/plain');
  res.end('Hello, World!');
});
server.listen(3000, 'localhost', () => {
  console.log('Server running at http://localhost:3000/');
});



Similar Questions


Online Exam Quiz for One day Exam Online Typing Test CCC Online Test 2026 Best Computer Training Institute in Prayagraj (Allahabad) Best Java Training Institute in Prayagraj (Allahabad) Best Python Training Institute in Prayagraj (Allahabad) O Level Online Test in Hindi Best Website and Software Company in Allahabad