const http = require("http");
// console.log(http.STATUS_CODES);

const server = http.createServer((request,response)=>{

    response.write("suraj");
    response.end();
});

server.listen("1234");