Angular 9 问题:无法 运行 初始应用程序

Angular 9 Issue: Unable to run the initial application

有人可以帮我解决以下问题吗?

我正在按照 https://v8.angular.io/guide/setup-local#prerequisites 文档在我的 windows 机器上设置初始应用程序,但遇到了问题。

OS: Windows 10、64 位

问题: npm install 失败。

响应: 创建 my-app/e2e/src/app.po.ts(301 字节) - 安装包...npm WARN 已弃用 tslint@6.1.2:TSLint 已被弃用,取而代之的是 ESLint。请参阅 https://github.com/palantir/tslint/issues/4534 了解更多信息。

npm WARN deprecated request@2.88.2:请求已被弃用,参见https://github.com/request/request/issues/3142

npm WARN 已弃用 chokidar@2.1.8:Chokidar 2 将在节点 v14+ 上中断。升级到 chokidar 3,依赖性减少 15 倍。

npm WARN 已弃用 fsevents@1.2.12:fsevents 1 将在节点 v14+ 上中断并且可能使用不安全的二进制文件。升级到 fsevents 2.

npm WARN 已弃用 urix@0.1.0:请参阅 https://github.com/lydell/urix#deprecated

npm WARN 弃用 resolve-url@0.2.1: https://github.com/lydell/resolve-url#deprecated

npm 警告可选跳过可选依赖项:fsevents@~2.1.2 (node_modules\rollup\node_modules\fsevents):

npm WARN notsup 跳过可选依赖项:fsevents@2.1.3 不受支持的平台:需要 {"os":"darwin","arch":"any"}(当前: {"os":"win32","arch":"x64"})

npm 错误!在“...mark”附近解析时 JSON 输入意外结束:“~1”,“microtime”

npm 错误!此 运行 的完整日志可在以下位置找到: 错误! .\AppData\Roaming\npm-cache_logs20-05-05T03_21_42_870Z-debug.日志 × 包安装失败,见上。

示意图工作流失败。见上文。

直到今天早上我都遇到了同样的问题。 请尝试安装/更新 chokidar 到版本 3.+

npm install chokidar

此外,尝试在清除 npm 缓存后重新安装 Angular CLI

npm cache clean --force

npm install -g @angular/cli@latest

Below solution work for me:

看来是缓存错误。清除 npm 缓存后重新安装 Angular CLI

点击此处: