Skip to content

Commit

Permalink
RU : Getting Started Guide (#2319)
Browse files Browse the repository at this point in the history
* Getting started RU translation

A human translation of 'Getting started' article to Russian.

* Patch of ru translation

* ru translation patch #2

* patch #4
  • Loading branch information
unstoo authored and alexandrtovmach committed Jul 15, 2019
1 parent ec42568 commit eb83d7e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions locale/ru/docs/guides/getting-started-guide.md
Original file line number Diff line number Diff line change
@@ -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');
Expand All @@ -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'.

0 comments on commit eb83d7e

Please sign in to comment.