Me

DO NOT LOOK THIS ONE .

View on GitHub

Node.js

安装

  1. 直接下载二进制执行文件
    weget node-v4.4.4-linux-x64.tar.xz
    tar -xJf node-v4.4.4-linux-x64.tar.xz 
    
  2. 通过包管理器安装
// Using Ubuntu
curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -
sudo apt-get install -y nodejs

// Using Debian, as root
curl -sL https://deb.nodesource.com/setup_12.x | bash -
apt-get install -y nodejs

更换node源

  1. 直接更换node源
    npm config set registry https://registry.npm.taobao.org
    
  2. 安装nrm
npm install -g nrm

nrm list

代码段