Node.js

Настройка приложения Node.js для работы в среде Ubuntu 18.04 — step-by-step Linux tutorial on Progressive Robot

Настройка приложения Node.js для работы в среде Ubuntu 18.04

Node.js — среда исполнения JavaScript с открытым исходным кодом, предназначенная для построения серверных и сетевых приложений. Данная платформа работает в операционных системах Linux, macOS, FreeBSD и Windows. Хотя вы можете запускать приложения Node.js…

Read more
How To Work with Files using the fs Module in Node.js — step-by-step Javascript tutorial on Progressive Robot

How To Work with Files using the fs Module in Node.js

With Node.js, you can use JavaScript to programmatically manipulate files with the built-in fs module. The name is short for “file system,” and the module contains all the functions you need to read, write, and delete files on the local machine. In this article, you will use the asynchronous fs module to read a file with fs.readFile(), create and write to a new file with fs.writeFile(), delete the file with fs.unlink(), and move the first file with fs.rename().

Read more
Node JS Architecture - Single Threaded Event Loop — step-by-step Javascript tutorial on Progressive Robot

Node JS Architecture – Single Threaded Event Loop

URL: https://www.progressiverobot.com/node-js-architecture-single-threaded-event-loop/ Today we will look into Node JS Architecture and Single Threaded Event Loop model. In our previous posts, we have discussed about [Node JS Basics](/community/tutorials/introduction-to-node-js-basics "Introduction to Node JS – Node.js Basics"), [Node JS Components](/community/tutorials/node-js-components-modules-npm-install-update-uninstall-example "Node.js Components – Node.js modules, NPM install update uninstall example") and [Node JS installation](/community/tutorials/node-js-environment-setup-node-js-installation "Node JS Environment Setup […]

Read more
How To Set Up a Node Project With Typescript — step-by-step Javascript tutorial on Progressive Robot

How To Set Up a Node Project With Typescript

Writing server-side JavaScript can be challenging as a codebase grows. TypeScript is a typed (optional) super-set of JavaScript that can help with building and managing large-scale JavaScript projects. It can be thought of as JavaScript with additional features like strong static typing, compilation and object oriented programming. This tutorial will explore how to use the [Express](https://expressjs.com/) framework with TypeScript.

Read more
Comment redémarrer vos applications Node.js automatiquement avec nodemon — step-by-step DevOps tutorial on Progressive Robot

Comment redémarrer vos applications Node.js automatiquement avec nodemon

Sous Node.js, vous devez redémarrer le processus pour que les changements prennent effet, une étape supplémentaire qui s’ajoute à votre flux de travail pour que les modifications soient implémentées. Vous pouvez éviter cette étape supplémentaire en utilisant nodemon qui se chargera de redémarrer le processus automatiquement. Cet article vous permettra d’en apprendre davantage sur l’installation, le réglage et la configuration de nodemon.

Read more
Como Instalar o Node.js no Ubuntu 16.04 — step-by-step Linux tutorial on Progressive Robot

Como Instalar o Node.js no Ubuntu 16.04

O Node.js é uma plataforma Javascript para programação de propósito geral, que permite aos usuários construírem aplicações de rede rapidamente. Ao levar o Javascript tanto ao front-end quanto ao back-end, o desenvolvimento pode ser mais consistente e ser projetado dentro do…

Read more
CHAT