首先这些奇奇怪怪的问题Windows需要背大部分的锅,毕竟平时用macOS就没有这些奇奇怪怪的问题

实在有点不解,macOS是怎么做到在exfat文件系统下支持软连接的


Error: EISDIR: illegal operation on a directory, symlink'文件路径' -> '目标路径'

如果工作目录处于非ntfs文件系统,会出现这样的问题

解决方案:不使用文件链接

npm i --registry=https://registry.npm.taobao.org --no-bin-links

如果不行(实测不行),使用yarn

npm install -g yarn
yarn

Module build failed: Error: Node Sass does not yet support your current environment: Windows 64-bit with Unsupported runtime (83

多系统切换,node-sass不同系统不通用而且还不能同时安装

解决方案:

npm rebuild node-sass

如果不行,删掉重装

npm uninstall --save node-sass
yarn add node-sass