欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

npm安装以及卸载模块 有大用

npm安装以及卸载模块

 版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/L1558198727/article/details/79312694

npm是随同NodeJS一起安装的包管理工具,能解决NodeJS代码部署上的很多问题



①npm安装模块:
利用 npm 安装xxx模块到当前命令行所在目录; 
npm install xxx
利用npm安装全局模块xxx;
npm install -g xxx



②利用 npm 删除xxx模块; 


删除xxx模块; 

npm uninstall xxx

删除全局模块xxx;
npm uninstall -g xxx


来自  https://blog.csdn.net/l1558198727/article/details/79312694






普通分类: