Node.js

How To Use Node.js Modules with npm and package.json — step-by-step Javascript tutorial on Progressive Robot

How To Use Node.js Modules with npm and package.json

The Node.js Package Manager (npm) is the default and most popular package manager in the Node.js ecosystem, and is primarily used to install and manage external modules in a Node.js project. In this tutorial, you will manage packages with npm, first keeping track of modules with the package.json file, and then using the npm CLI tool to list your package dependencies, update your packages, uninstall your packages, and perform an audit to find security flaws in your packages.

Read more
How To Write and Run Your First Program in Node.js — step-by-step Javascript tutorial on Progressive Robot

How To Write and Run Your First Program in Node.js

Node.js is a popular open-source runtime environment that can execute JavaScript outside of the browser using the V8 JavaScript engine, which is the same engine used to power the Google Chrome web browser’s JavaScript execution. In this tutorial you’ll create your first program with the Node.js runtime. You’ll be introduced to a few Node-specific concepts and build your way up to create a program that helps users inspect environment variables on their system.

Read more
Как установить Node.js в Ubuntu 14.04 — step-by-step Linux tutorial on Progressive Robot

Как установить Node.js в Ubuntu 14.04

Node.js это платформа для разработки серверных приложений на языке Javascript, позволяющая быстро создавать приложения, работающие в сети. Использование Javascript одновременно на клиентской и на серверной стороне позволяет сделать разработку более унифицированной и…

Read more
Como reiniciar seus aplicativos Node.js automaticamente com o nodemon — step-by-step DevOps tutorial on Progressive Robot

Como reiniciar seus aplicativos Node.js automaticamente com o nodemon

No Node.js, é necessário reiniciar o processo para fazer com que as alterações sejam ativadas. Isso adiciona um passo extra ao seu fluxo de trabalho para que as alterações sejam realizadas. É possível eliminar esse passo extra usando o nodemon para reiniciar o processo automaticamente. Neste artigo, você irá aprender sobre a instalação e configuração do nodemon.

Read more
Контейнеризация приложения Node.js для разработки с использованием Docker Compose — step-by-step Docker tutorial on Progressive Robot

Контейнеризация приложения Node.js для разработки с использованием Docker Compose

Если вы активно занимаетесь разработкой приложений, использование Docker может упростить ваш рабочий процесс и процесс развертывания вашего приложения в продакшен. Работа с контейнерами в процессе разработки предоставляет следующие преимущества: Среды…

Read more
CHAT