From eb83d7e514d278d398664d569b02687daadeb979 Mon Sep 17 00:00:00 2001 From: Yevgeny Date: Mon, 15 Jul 2019 22:08:55 +0300 Subject: [PATCH] RU : Getting Started Guide (#2319) * Getting started RU translation A human translation of 'Getting started' article to Russian. * Patch of ru translation * ru translation patch #2 * patch #4 --- locale/ru/docs/guides/getting-started-guide.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/locale/ru/docs/guides/getting-started-guide.md b/locale/ru/docs/guides/getting-started-guide.md index a66d897400f47..55e1c8a7977f6 100644 --- a/locale/ru/docs/guides/getting-started-guide.md +++ b/locale/ru/docs/guides/getting-started-guide.md @@ -1,12 +1,12 @@ --- -title: Getting Started Guide +title: Первые шаги layout: docs.hbs --- -# How do I start with Node.js after I installed it? +# С чего начать в Node.js после его установки? -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" и скопируйте следующий код: ```javascript const http = require('http'); @@ -25,4 +25,4 @@ server.listen(port, hostname, () => { }); ``` -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'.