node.js 使用----相关常用命令总结
Posted infoo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了node.js 使用----相关常用命令总结相关的知识,希望对你有一定的参考价值。
node.js 使用----相关常用命令总结
1. 下载并安装node.js
2. 设置全局模块存放的目录
2.1 查看默认配置
npm config ls
2.2 修改全局模块存放目录
npm config set prefix "e:\stores\nodejs\node_modules\node_global"
npm config set cache "e:\stores\nodejs\node_modules\node_global"
2.2.1 修改prefix 后需要在环境变量中添加:
"e:\stores\nodejs\node_modules\node_global"
3. 安装工具 nrm (全局安装)
npm install nrm -g
3.1 使用 nrm 更换镜像地址
nrm ls //查看有哪些
nrm use taobao //使用淘宝提供的镜像地址
- nrm 仅仅是提供了几个常用的包地址,用 nrm use XX 来选择使用的地址
4 npm 查看包信息
4.1 查看远程包信息
- 方法一
npm info xx
- 方法二
nom view xx versions
4.2 查看本地包信息
npm ls xxx //本地包
npm ls xxx -g //全局包
以上是关于node.js 使用----相关常用命令总结的主要内容,如果未能解决你的问题,请参考以下文章
web前端课程技术总结Node.js 使用方法及相关方法分析
web前端课程技术总结Node.js 使用方法及相关方法分析
使用node.js中fs模块的copyFileSync方法复制文件报错“operation not permitted, copyfile ‘G: est.txt‘ -> ‘G:Trash‘“(代码片