NPM Projects - How to#
Trying to figure out and document a process for developing NPM JS projects, mainly to take advantage of associated CDN availability of the modules.
I'm actually using this process
NPM Docs#
Start with the NPM docs focus on packages and modules
Packages#
- Described by a package.json - creating a package.json
- Scope - scoped/unscoped and public/private
- unscoped packages are alway spublic
Modules#
-
anything in the
node_modules
directory that can be loaded by Node.js -
init - in folder
npm init