Post

nvm env

使用nvm管理node环境

在win,下载win-nvm-github,随后进行安装。

unix系的可以直接使用包管理安装,或者去unix-nvm,参考readme安装

国内用户需要换源,不然下载速度感人。

win下的换源很简单,只需要修改nvm安装目录下的setting.txt就可以

1
2
3
4
5
nvm npm_mirror https://npmmirror.com/mirrors/npm/
nvm node_mirror https://npmmirror.com/mirrors/node/
# 或者修改settings.txt
node_mirror: https://npmmirror.com/mirrors/node/
npm_mirror: https://npmmirror.com/mirrors/npm/

在unix下的使用稍微复杂一点点,一般这个环境在.nvm下的nvm.sh里,可以针对搜索一下, 主要更改一下下面的变量值就可以

1
cat -n nvm.sh | grep NVM_NODEJS_ORG_MIRROR

随后使用nvm install安装具体的version + nvm use具体的version, 换下面这个就ok。

1
https://mirrors.aliyun.com/nodejs-release/

npm换源

看当前使用的是

1
npm config get registry

换源比较简单

1
npm config set registry https://registry.npmmirror.com/

安装gitbook

版本太高会有语法问题(毕竟这东西的cli已经不维护了),目前我使用的nodejs是10.24,查资料的时候发现有人用12.X的也能装上。

1
2
npm install -g gitbook-cli
gitbook -V # 会开始安装,耗时可能比较久
This post is licensed under CC BY 4.0 by the author.

Trending Tags