Initialize Node Project
Initialize a local node project
List Npm packages
Shows all the Npm packages installed locally in the project
List Global Npm Packages
Shows all the Npm packages installed globally on your system
Install All Npm packages
Checks for package.json file and installs all the packages in the package.json manifesto
Install Package Locally
Installs npm package locally
Install Package Globally
npm install -g package_name
Installs npm package globally
Install Dev Package Locally
npm install package_name -D
Install Dev Dependancy Package Locally
Update Packages
Updates all the local specified package to the newest version
Update Package
Updates the local specified package to the newest version
Uninstall Package
npm uninstall package_name
Uninstalls the specified package
Uninstall Global Package
npm uninstall package_name -g
Uninstalls the specified package globally
Launch Package
Start a package/project
Add User
Adds User to local Npm installation
Check Npm User
Gets the username of the account that is logged in
Publish package
publishes the current project/package to npm registry.