序言
- 安装和配置Git
- 安装NVM和Node
- 安装和配置Git
安装和配置Hexo
# 安装Git
apt-get -y install git
# 配置Git
git config global user.name="testname"
git config global user.email="[email protected]"
安装NVM和Node
# 安装Node.js
# 检测npm和node是否安装
nvm -v
# nvm 已安装列表
nvm list
# nvm 远程可安装列表
nvm list available
# nvm 卸载指定版本
nvm uninstall [version]
# nvm 使用指定版本
nvm use [version]
# 安装顺序
nvm list available
nvm install [version]
nvm list
nvm use [version]
node -v
npm install npm -g
设置Nvm和Node镜像源
# 配置当前安装包的镜像源
npm install -g <安装包名> --registry=https://registry.npm.taobao.org
# 本次安装为当前配置的镜像源
npm install --registry=https://registry.npm.taobao.org
# 查看当前镜像源
npm config get registry
# 修改~/.npmrc,加入以下内容
npm config set registry https://registry.npm.taobao.org
registry = https://registry.npm.taobao.org
使用cnpm更换npm
npm install -g cnpm --registry=https://registry.npm.taobao.org
查看全局安装的包
npm -g list
安装和配置Hexo
# 全局安装 hexo
npm install -g hexo-cli
# 局部安装 hexo
npm install hexo
# 安装 Hexo 主题
git clone https://github.com/theme-next/hexo-theme-next /hexo/themes/next
# 修改_config.xml
# 主题
theme: next
# github部署
deploy:
type: git
repo: [email protected]:github名字/仓库名字
branch: master
标签:npm,Hexo,registry,install,nvm,安装
From: https://www.cnblogs.com/rsgltzyd/p/18264006