NPM 安装模块

$ npm install express

安装后即可引入使用:

var express = require('express');

NPM 卸载模块

$ npm uninstall express
$ npm ls

NPM 更新模块

$ npm update express

NPM 搜索模块

$ npm search express

NPM 清除缓存

npm cache clear

NPM 安装模块的两种方式

全局安装

安装的包保存在系统目录下,主要用于全局需要使用的模块。

npm install express -g

查看所有全局安装的模块:

$ npm list -g
本地安装

安装的包保存在项目目录下,主要用于项目需要使用的模块。

npm install express

查看所有本地安装的模块:

$ npm list

小伍
139 声望4 粉丝