Node Modules

Intro

Node allows you to use code from other files. This is called ‘requiring’ or ‘importing’, and gives you the ability to share functions, variables, and logic between multiple files. Node also provides a few conveniences, such as a node_modules folder where you can easily reference modules, and a few built-in modules, like fs for accessing the file system and http for creating HTTP servers. Modules can also be downloaded from NPM.

Suggested Learning

Requirements

Extra Learning

This list is by no means complete. Feel free to add an issue or put in a pull request to update it.