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)
当前回答
在我的情况下,问题是当我安装节点的最新版本,即;10.6.0. 同样的错误显示并参考@Quinn卸载该版本并安装8.11.3 LTS版本。现在工作很好:)
其他回答
我安装了最新的版本,在写这篇评论的时候是5.0.0
NPM安装node-sass@latest
我也遇到过同样的问题,我是这样解决的:
检查当前项目中使用的node-sass版本 进入node-sass release: “https://github.com/sass/node-sass/releases/tag/v@.@.@”(把你的node-sass版本放在这里) 检查Supported Environment表,看看是否有你的Node版本 如果不是,请将节点版本降级到表中现有的最新版本
我知道这不是完美的解决方案,但我没有在我的情况下找到任何其他方法。
如果你有一个用节点8构建的旧项目,你必须在节点8下运行:
$npm rebuild node-sass
然后切换到10号或以上节点,执行以下命令:
$npm uninstall node-sass && npm install node-sass
在这些行动之后,我一切都很好。如果我在节点8或节点10或更高的节点下执行此操作,则不会修复项目中的问题。 也许它会帮助别人:)
遇到这个问题,npm i @ionic/app-scripts是唯一工作的东西。
使用Nodist节点版本管理器
如果使用nodist版本管理器,并且只设置了本地(文件夹)节点版本,则可能会出现此错误。
为此,需要将全局节点版本设置为与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存储库