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)
当前回答
如果你使用NVM, VS Code和VS Code任务资源管理器来运行使用node-sass的npm脚本,下面的警告将为你节省一些时间。
I was using VS Code's Task Explorer to run my scripts and have installed multiple Node versions using NVM, defaulting to the current latest version 16. When I opened my VS Code repository and ran nvm use 10 in a new terminal, the Node and npm version in that terminal window correctly downgrades, but the version of node/npm used by the Task Explorer runner remained at Node 16. So when running my webpack script using the VS Code Task Runner, node-sass would still throw the environment error of this question.
解决方案是不使用VS Code任务运行器,在你改变节点版本的终端上运行你的脚本,或者使用下面的命令改变默认的NVM节点版本,重新启动VS Code,然后使用任务资源管理器/运行器。
NVM别名默认10(或任何你需要node-sass兼容性的版本)
其他回答
这条错误消息并不是Ionic的问题,而是node-sass的问题,node-sass是在Gulp文件中指定执行的。
node-sass错误:
Node Sass还不支持当前环境
指示您试图运行的node-sass版本与已安装的node版本不兼容。
查看Node - Sass发布说明,了解您拥有的Node - Sass版本,了解需要哪个版本的Node。
如果node的版本错误,则必须降级node或升级node-sass,直到有兼容的对为止。如果节点版本被支持,你可能只需要运行:
npm rebuild node-sass
(如果全局安装node-sass,则使用-g)。
如果这不起作用,你可以:
npm uninstall node-sass && npm install node-sass
(同样,必要时使用-g)。
这个github问题有很多关于这方面的信息。
在我的例子中,这与节点版本有关。
我的项目使用的是12.18.3,但我使用的是14.5.0
所以npm rebuild node-sass没有在错误的节点版本(14.5.0)上解决这个问题。
我切换到正确的版本(12.18.3),所以它可以工作。
如果没有其他方法,请尝试安装低版本的节点。
查找可用的节点版本
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
这里的最佳解决方案是迁移到dart-sass,因为node-sass库已被弃用。
我有一个类似的错误与sass包,我修复了以下步骤:
在确定错误是由于版本不兼容导致的之后,列出可用的版本:
npm view node-sass versions
我的版本是'5.0.0',所以我把它降级到之前的版本(在我的例子中是'4.14.1'):
npm uninstall node-sass
npm install node-sass@4.14.1
瞧,只需要一个版本步骤,在其他情况下可能需要几个,这取决于项目的年代或需求。
推荐文章
- 有没有办法修复包锁。json lockfileVersion所以npm使用特定的格式?
- 如何使用npm全局安装一个模块?
- npm犯错!错误:EPERM:操作不允许,重命名
- Node Sass还不支持当前环境:Linux 64位,带false
- 编译typescript时'tsc命令未找到'
- npm不工作-“读取ECONNRESET”
- npm install from Git在特定的版本
- 顺序运行NPM脚本
- NPM卡住给出相同的错误EISDIR:对目录的非法操作,读取错误(本机)
- Browserslist: canius -lite已经过时。请运行下一个命令' npm update caniuse-lite browserslist '
- 检查已安装的angular-cli版本?
- 如何使webpack开发服务器运行在端口80和0.0.0.0使其公开访问?
- 如何在AWS Lambda中加载npm模块?
- 当我运行' npm install '时,它返回' ERR!代码EINTEGRITY ' (npm 5.3.0)
- 如何在Angular中显示应用版本?