npm的使用方法 作者:马育民 • 2017-10-09 23:36 • 阅读:10062 # 安装模块 ### 安装模块到当前命令行所在目录 ``` npm install xxx ``` ### 安装全局模块 ``` npm install -g xxx ``` ### 安装但不写入package.json ``` npm install xxx ``` ### 安装并写入package.json的”dependencies”中 ``` npm install xxx –save ``` ### 安装并写入package.json的”devDependencies”中 ``` npm install xxx –save-dev ``` # 删除模块 ### 删除xxx模块 ``` npm uninstall xxx ``` ### 删除全局模块xxx ``` npm uninstall -g xxx ``` # 删除node_modules 执行以下命令,就能重新下载 ```shell npm install ``` 感谢 http://www.ruanyifeng.com/blog/2016/01/npm-install.html https://blog.csdn.net/mezheng/article/details/79650816 原文出处:http://malaoshi.top/show_1C78g74TFFF.html