Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 937 Bytes

NPM.md

File metadata and controls

22 lines (15 loc) · 937 Bytes

npmimage

NPM => Node Package Manager

Contents

To install all the packages defined in package.json

    npm install
    npm -i

To install a particular package for the given project

    npm install package_name
    npm -i package_name

To install a particular package for all the projects, in other words install package with global scope

    npm install package_name -g
    npm -i package_name -g