Skip to content

Commit 9c93f21

Browse files
authored
Merge pull request #2 from unstoo/unstoo-patch-1
translation to ru
2 parents 558fc1d + e716df3 commit 9c93f21

1 file changed

Lines changed: 12 additions & 3 deletions

File tree

locale/ru/docs/guides/anatomy-of-an-http-transaction.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
2-
title: Anatomy of an HTTP Transaction
2+
title: Анатомия HTTP Транзакции
33
layout: docs.hbs
44
---
55

6-
# Anatomy of an HTTP Transaction
6+
# Анатомия HTTP Транзакции
77

88
The purpose of this guide is to impart a solid understanding of the process of
99
Node.js HTTP handling. We'll assume that you know, in a general sense, how HTTP
@@ -12,11 +12,20 @@ assume a bit of familiarity with Node.js [`EventEmitters`][] and [`Streams`][].
1212
If you're not quite familiar with them, it's worth taking a quick read through
1313
the API docs for each of those.
1414

15-
## Create the Server
15+
Цель данного руководства дать твердое понимание процесса обработки HTTP в
16+
Node.js. Мы предположим, что вам известно, в общих чертах, как работают HTTP
17+
запросы, в независимости от языка програмирования и среды разработки. Мы
18+
так же предположим, что у вас есть некоторое представление о [`EventEmitters`][]
19+
и [`Streams`][] в Node.js. Если вы недостаточно знакомы с этими модулями, стоит
20+
пролистать их API документацию.
21+
22+
## Создание Сервера
1623

1724
Any node web server application will at some point have to create a web server
1825
object. This is done by using [`createServer`][].
1926

27+
Рано или поздно любое веб-сервер приложение в node должно создать объект веб-сервера.
28+
2029
```javascript
2130
const http = require('http');
2231

0 commit comments

Comments
 (0)