Monday, June 17, 2019

NodeJS - Application Entry Point - app.js

In a node.js application that uses multiple files the main entry point of the application is often called app.js - this is a Node.js community convention. So we should be able to run a Node.js application as:

$ node app.js



References: