_ Prerequisite
_ Install&Setup
- Step.1
- Execute the following command.
$ sudo apt-get install npm
_ HowToUse
_ General Operations
- Step.1
- Execute the following command.
(Install)
$ npm install <Package Name>
(Uninstall)
$ npm uninstall <Package Name>
(List)
$ npm list
_ Manage install modules
- Step.1
- Create Package.json
$ npm init
- Step.2
- Add dependencies.
$ npm install <Package Name> --save
Or
$ npm install <Package Name> --save-dev
- Step.3
- Install the modules specified in Package.json
$ npm install
_ Author
S.Yatsuzuka