E:\A Prem World\Team_Work_Tasks\Anjali\Anjali_20160524\QuizApp_20160524_01_Anj>ionic serve -l
(node:4772) fs: re-evaluating native module sources is not supported. If you are using the graceful-fs module, please update it to a more recent version.
There is an error in your gulpfile:
Error: Node Sass does not yet support your current environment: Windows 64-bit with false
For more information on which environments are supported please see:
TODO URL
    at Object.<anonymous> (E:\A Prem World\Team_Work_Tasks\Anjali\Anjali_20160524\QuizApp_20160524_01_Anj\node_modules\node-sass\lib\index.js:12:11)
    at Module._compile (module.js:541:32)
    at Object.Module._extensions..js (module.js:550:10)
    at Module.load (module.js:456:32)
    at tryModuleLoad (module.js:415:12)
    at Function.Module._load (module.js:407:3)
    at Module.require (module.js:466:17)
    at require (internal/module.js:20:19)
    at Object.<anonymous> (E:\A Prem World\Team_Work_Tasks\Anjali\Anjali_20160524\QuizApp_20160524_01_Anj\node_modules\gulp-sass\index.js:187:21)
    at Module._compile (module.js:541:32)

当前回答

命令npm uninstall node-sass && npm install node-sass对我没有帮助,但在安装Python 2.7和Visual c++构建工具后,我删除了node_modules文件夹,从管理员打开CMD并运行npm install——msvs_version=2015。安装成功!

这条评论和这个链接也会有所帮助。

其他回答

使用Nodist节点版本管理器

如果使用nodist版本管理器,并且只设置了本地(文件夹)节点版本,则可能会出现此错误。

为此,需要将全局节点版本设置为与node-sass版本相匹配的版本。

内包。Json转换node-sass版本:

"node-sass": "^4.0.0"

我用angular 7得到了这个错误,帮助我的是, 从windows power shell运行命令:

npm install --global --production windows-build-tools

然后我再次打开我的VS Code,在它的终端上运行相同的命令 NPM卸载node-sass并安装node-sass

回滚到节点v10.17.0解决了我的问题。

你可以使用nvm来这样做:

https://github.com/nvm-sh/nvm

> nvm install 10.17.0
> nvm use 10.17.0
> node -v
10.17.0

如果没有其他方法,请尝试安装低版本的节点。

查找可用的节点版本

Brew搜索节点

安装低版本,如12

Brew install node@12

断开现有版本的链接

酿造断开节点

使用新版本

酿造链接node@12

如果你得到这样的警告:“警告:node@12是keg-only,必须与——force链接”

Brew link—force—overwrite node@10 echo 'export

更新您的配置并提供资源

PATH="/usr/local/opt/node@12/bin:$PATH"' >> ~/. "bash_profile源 ~ / . bash_profile