问题:
gitbook init
报错如下:
1 |
TypeError [ERR_INVALID_ARG_TYPE]: The "data" argument must be of type string or an instance of Buffer, TypedArray, or DataView. Received an instance of Promise |
报错原因:
node.js
版本过高
解决:
安装并切换低版本node.js
1 2 3 4 |
nvm install v12.22.11 // 安装低版本 nvm use v12.22.11 // 切换到低版本 npm install gitbook-cli // 安装gitbook-cli gitbook init |