Tag Archives: Node.js

Node.js – Modules

By | 19/08/2019

When we are developing an application with Node.js, we could put all functionalities into one single huge file. For the Node.js interpreter this isn’t a problem but, we could have problems in terms of code organization.It is a best practice breaking down our huge files in more small files.In node.js a functionality organized in single… Read More »

Node.js – First application

By | 05/08/2019

In this post, we will see how to create a one simple console application (sum of two values) using Node.js. We run Visual Studio Code, open a new Terminal, select the folder where we want to create the project and we run the command npm init.Then, we install a module called readline-sync, using the command… Read More »