My learning Node.js Journey.
- Importing Node.js core modules.
- Importing my own files.
- Importing npm modules.
Node.js in-built modules:
- File System - The
fs
module enables interacting with the file system.
npm modules:
- validator - A library of string validators and sanitizers.
- chalk - Terminal string styling done right.
- yargs - Yargs helps you build interactive command line tools, by parsing arguments.
- nodemon - nodemon is a tool that helps develop node.js based applications by automatically restarting the node application when file changes in the directory are detected. (this module is installed globally)