因 core-js postinstall 脚本错误而失败

时间:2021-06-23 18:57:25

标签: node.js angular npm npm-install npm-scripts

当我尝试在现有 Angular project 中安装节点模块时遇到以下错误。我正在尝试在 Windows 机器(Win32 X64)中安装节点模块。

       > core-js@2.6.12 postinstall node_modules\babel-runtime\node_modules\core-js 
       > node -e "try{require('-/postinstall')}catch(e){}"

      npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.13 (node_modules\ng-cli-pug-loader\node_modules\fsevents):
      npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.13: wanted ("os":"darwin","arch":"any") (current: {"as":"vin3 
      npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.13 (node_modules\@angular\compiler-cli\node_modules\fsevents): arch":"x64"})

      npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.13: wanted ("os": "darwin","arch":"any") (current: {"as":"u ","arch":"x64"}) 
      npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@2.3.2 (node_modules\fsevents): 
      npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@2.3.2: wanted ("os": "darwin","arch":"any") (current: {"as":"win32","arch":"x64"})

      npm ERR! code ELIFECYCLE

      npm ERR! syscall spawn bash

      npm ERR! file bash

      npm ERR! path bash

      npm ERR! errno -4058

      npm ERR! core-js@3.6.4 postinstall: "node -e "try(require('./postinstall')}catch(e){}"

      npm ERR! spawn bash ENOENT

      npm ERR!

      npm ERR! Failed at the core-js@3.6.4 postinstall script.

      npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

      npm ERR! A complete log of this run can be found in:

      npm ERR!

      C:\Users\test\AppData\Roaming\npm-cache\_logs\2021-06-23T16_43_06_961Z-debug.log
       

以下是我系统中安装的版本

  AngularCli : 8.3.29
  Node : 14.17.1
  NPM: 8.2.12

我尝试删除 node modules 文件夹并运行 npm cache clean --force 并重新安装 node modules ,还尝试卸载 nodejs 并删除 npm-cache 文件夹并重新安装。

我仍然面临同样的问题。任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:1)

此错误意味着安装后脚本是 fork-and-exec'ing bash,Windows 上不存在该脚本。您需要从 MINGW64 (Git Bash) 之类的 Bash 模拟器中运行它。