ps aux | grep node
kill -9 PROCESS_ID
const http = require("http");
const server = http.createServer(function (req, res) {
const url = req.url;
if (url === "/") {
// do a 200 response
res.writeHead(200, { "Content-Type": "text/html" });
res.write("<h1>Hello World!<h1>");
res.end();
}
});
server.listen(3000, function () {
console.log("server started at port 3000");
});