nodejs

分类下相关文章

The engine "node" is incompatible with this module

在运行一个从 git 仓库 clone 下来的 ant design pro 项目时,报错: 未找到 umi > tyarn start:dev yarn run v1.22.10 $ cross-env REACT_APP_ENV=dev MOCK=none UMI_ENV=dev umi dev Your node v16.14.2 is not supported by umi, please use node 10, node 12 or node 14. Error: Cannot find module 'umi' 注意,这里的 node 版本警告可以忽略。主要问题是没有 ...

阅读全文...

Ubuntu 上使用 NVM 安装 Node.js

系统环境 Ubuntu 16.10 安装 nodejs 这里使用 NVM (Node.js version manager) 安装 nodejs。 sudo apt-get update sudo apt-get install build-essential libssl-dev curl -sL https://raw.githubusercontent.com/creationix/nvm/v0.31.0/install.sh -o install_nvm.sh bash install_nvm.sh source ~/.profile 这个安装方法可能失效了,最新的参考官方 gith ...

阅读全文...