Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.2 KB

File metadata and controls

32 lines (24 loc) · 1.2 KB
title Getting Started Guide
layout docs.hbs

How do I start with Node.js after I installed it?

Once you have installed Node, let's try building our first web server. Create a file named "app.js", and paste the following code:

После того как вы установили Node, давайте попробуем создать наш первый веб-сервер. Создайте файл с именем "app.js", и скопируйте следующий код:

const http = require('http');

const hostname = '127.0.0.1';
const port = 3000;

const server = http.createServer((req, res) => {
  res.statusCode = 200;
  res.setHeader('Content-Type', 'text/plain');
  res.end('Hello World\n');
});

server.listen(port, hostname, () => {
  console.log(`Server running at http://${hostname}:${port}/`);
});

After that, run your web server using node app.js, visit http://localhost:3000, and you will see a message 'Hello World' После этого запуститье ваш веб-сервер используя комманду node app.js, откройте http://localhost:3000 в браузере, и вы увидите сообщение 'Hello World'