// To run the app, download NodeJS from here:
// https://nodejs.org/en/
// or run those commands if you are on Linux
// sudo apt-get install nodejs -y
// node -v
// currently using this version: v12.22.9
//run command: node index.js
// Open in browser: localhost:3000
const http = require("http");
const port = 3000;
const server = http.createServer(function (req, res) {
res.write(
`
Hello NodeJS People!
`
);
res.end();
});
server.listen(port, function (error) {
if (error) {
console.log("Something went wrong", error);
} else {
console.log("Server is listening on port " + port);
}
});
На этой странице сайта вы можете посмотреть видео онлайн NodeJS web server hello world длительностью часов минут секунд в хорошем качестве, которое загрузил пользователь elina k 04 Июль 2022, поделитесь ссылкой с друзьями и знакомыми, на youtube это видео уже посмотрели 20 раз и оно понравилось 1 зрителям. Приятного просмотра!