Node.js 之旅 - 好的开端
安装 Node.js Windows 官网 下载二进制安装包直接安装。 其它方法参考 官方文档。 Ubuntu 12345# 根据需要选择不同版本: 6.x、7.x ....$ curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -$ curl -sL https://deb.nodesource.com/setup_7.x | sudo -E bash -# 安装$ sudo apt-get install -y nodejs 详细说明请参考 官方文档。 CentOS 12345# 根据需要选择不同版本: 6.x、7.x ....$ curl --silent --location https://rpm.nodesource.com/setup_6.x | bash -$ curl --silent --location https://rpm.nodesource.com/setup_7.x | bash -# 安装$ yum -y install nodejs 详细说明请参考 官方文档。 OSX 123...
