MacOS 安装 Node.js
in Projects with 0 comment

MacOS 安装 Node.js

in Projects with 0 comment

1 安装Node.js

用以下方法安装 Node.js 服务器:

brew install node

安装后使用命令检查Node.js:

node --version

2 配置npm仓库

npm 是Node.js 提供的包管理工具,其默认仓管在国际网,访问速度较慢,通过设置为国内镜像能够改善性能:

npm config set registry=http://registry.npm.taobao.org

或者安装cnpm工具,替代npm工具:

npm install -g cnpm --registry=https://registry.npm.taobao.org 

检查

npm config get registry