What is a module and why is modularity useful to us as developers? Modular software design is done by breaking the larger code into smaller sections, think modules, that hold specific functions. Modular design is shown to improve the design process by allowing better re-usability, workload handling, and easier debugging processes.
What command would you type to install a library/package called ‘jshint’ into your node project? npm i jshint or npm install jshint