An NPM Primer
A brief overview of the Node Package Manager (NPM).
We'll cover the following...
What is NPM?
It’s probably best that we look at the Node Package Manager (NPM) and understand how it relates to Ionic development, as we’re going to be spending time dipping in and out of using this package manager throughout this course.
As the name implies, NPM is a package manager which allows developers to source self-contained modules, or packages, of JavaScript code that have been specifically developed to solve particular tasks (generating code documentation from inline comments or image compression for example) from an official online registry. ...