Skip to content

Instantly share code, notes, and snippets.

View samarjitsahoo's full-sized avatar
💻
Java Full Stack

Samarjit Sahoo samarjitsahoo

💻
Java Full Stack
View GitHub Profile
@samarjitsahoo
samarjitsahoo / node.js
Created July 23, 2024 13:39
Simple Node JS server
// Import the http module
const http = require('http');
// Define the hostname and port
const hostname = '127.0.0.1';
const port = 3000;
// Create the server
const server = http.createServer((req, res) => {
// Set the response header