NPM 的包管理
Posted 小伍
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了NPM 的包管理相关的知识,希望对你有一定的参考价值。
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
以上是关于NPM 的包管理的主要内容,如果未能解决你的问题,请参考以下文章