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兼容性的版本)
其他回答
内包。Json转换node-sass版本:
"node-sass": "^4.0.0"
在我的例子中,这与节点版本有关。
我的项目使用的是12.18.3,但我使用的是14.5.0
所以npm rebuild node-sass没有在错误的节点版本(14.5.0)上解决这个问题。
我切换到正确的版本(12.18.3),所以它可以工作。
删除node_modules并运行npm install为我修复了这些错误。
其他人说:npm重建node-sass或npm审计修复可能会有帮助。
以上这些方法对我都没用。我完全删除,然后重新安装,它解决了这个问题。
删除现有的:
npm uninstall --save-dev node-sass
然后重新安装:
npm install --save-dev node-sass
这里的最佳解决方案是迁移到dart-sass,因为node-sass库已被弃用。
推荐文章
- npm犯错!代码UNABLE_TO_GET_ISSUER_CERT_LOCALLY
- 你可以为你的组织托管一个私有的存储库来使用npm吗?
- 如何用npm更新TypeScript到最新版本?
- Nodejs无法在Windows上找到已安装的模块
- 我需要两个包锁吗?Json和package.json?
- 在Windows上运行Python以获得Node.js依赖
- 如何在NPM安装期间使用不同版本的python ?
- 更新包。Json自动版本
- 无法运行我的Node.js Typescript项目TypeError [ERR_UNKNOWN_FILE_EXTENSION]:未知的文件扩展名"。/app/src/ app .ts
- npm install -g less does not work: EACCES:权限被拒绝
- 为什么在npm中对插件使用对等依赖?
- “npm config set registry https://registry.npmjs.org/”在Windows bat文件中不工作
- 安装Gulp后:"没有命令' Gulp ' found "
- 如何使用私人Github回购作为npm依赖
- NPM在package.json中通过依赖项安装私有github存储库