Hey, guys! Let’s continue our lesson about Express basics and Middleware.
The result is (add to app.js):
Hey, guys! Let’s continue our lesson about Express basics and Middleware.
The result is (add to app.js):
Всем привет! Давайте продолжим наш урок об основах Express и Middleware.
Итог (добавим в app.js):
Hey all! This and next articles will be devoted to various themes on development within the context of one app that we will consequently improve. This app is a web chat.
Всем привет! В этой и в следующих статьях мы будем рассматривать различные темы по разработке в контексте одного приложения, которое будет постепенно дорабатываться. Это приложение – веб-чат.
Hey all! The first topic of this article is transferring of parameters and the script for Node.js. To show you the principle, we will create a file with a simple code, so add it (server.js):
We are looking forward to meeting you on our website soshace.com
Всем привет! Первая тема этой статьи: передача параметров, скрипт для Node.js. Для этого в качестве исходного мы возьмем простой файл, добавьте его (server.js):
How and what does app.js consist of?
It is made in a way that from the very beginning we create a domain and then launch our app within this domain. Here all modules can be connected, a server gets created, etc. But why do we connect modules here? The reason is that some other modules can be added when the connection happens, and they can connect others, too.
Итак, из чего состоит app.js?
Он состоит из того, что мы с самого начала делаем домен, и запускаем в нем все наше приложение. Здесь подключаются все модули, создается сервер и т.д. Почему мы подключаем модули здесь? Потому что во время подключения модулей могут подключаться какие-то другие модули, а те могут подключать – третьи, и т.д.
So, we continue our lesson. Let us make this example a little bit more complicated by adding work with the files in the following way: