Understanding Modules And Its Type In NodeJS
What is a Module in Node.js?
In NodeJS, every JS file is a module.
Consider modules to be the same as JavaScript libraries. A set of functions, variables, you want to include in other JS files (modules) of your application.
Built-in Modules
Node.js h...
blog.altafshaikh.in3 min read