我刚刚安装了角度8。当我尝试运行一个带有“ng serve --open”的项目时,它给了我以下错误:
Could not find the implementation for builder @angular-devkit/build-angular:dev-server
Error: Could not find the implementation for builder @angular-devkit/build-angular:dev-server
at WorkspaceNodeModulesArchitectHost.resolveBuilder (C:\Users\manus\project\space-estate\webshop\frontend\client\node_modules\@angular\cli\node_modules\@angular-devkit\architect\node\node-modules-architect-host.js:49:19)
at ServeCommand.initialize (C:\Users\manus\project\space-estate\webshop\frontend\client\node_modules\@angular\cli\models\architect-command.js:72:63)
at process._tickCallback (internal/process/next_tick.js:68:7)
at Function.Module.runMain (internal/modules/cjs/loader.js:744:11)
at startup (internal/bootstrap/node.js:285:19)
at bootstrapNodeJSCore (internal/bootstrap/node.js:739:3)
当我检查版本时,它会给我以下信息:
Angular CLI: 8.0.1
Node: 10.13.0
OS: win32 x64
Angular: 8.0.0
... animations, common, compiler, compiler-cli, core, forms
... language-service, platform-browser, platform-browser-dynamic
... router
Package Version
-----------------------------------------------------------
@angular-devkit/architect 0.13.9
@angular-devkit/build-angular 0.13.9
@angular-devkit/build-optimizer 0.13.9
@angular-devkit/build-webpack 0.13.9
@angular-devkit/core 8.0.1
@angular-devkit/schematics 8.0.1 (cli-only)
@ngtools/webpack 7.3.9
@schematics/angular 8.0.1 (cli-only)
@schematics/update 0.800.1 (cli-only)
rxjs 6.5.2
typescript 3.4.5
webpack 4.29.0
这似乎是@angular开发/构建角度
的问题,请尝试降级到特定版本
npm i @angular-devkit/build-angular@0.803.24
这个版本适合我。
如果您使用的是Angular 8,则应通过运行以下命令,确保Angural软件包安全更新到当前稳定版本
ng update
否则,您可以尝试手动更新< code>@angular/cli和核心框架包。
ng update @angular/cli @angular/core
使用此命令
npm install --save-dev @angular-devkit/build-angular
当我尝试运行现有的角度项目时,它被编译,但像这样抛出错误消息。 “Angular Live Development Server 正在本地主机:4200 上侦听,请在 http://localhost:4200/ **” 找不到模块“@angular/core/package.json” 当我尝试构建它显示错误时 您似乎没有依赖于“@角/核”和/或“rxjs”。这是一个错误。 我正在使用的版本是
我有一个angular程序,当我转到cmd并尝试使用ng serve运行它时,它会给我这个消息 我试图用我在堆栈溢出上找到的一些方法来解决这个问题,但没有一种有效 它向我展示了这个错误:
问题内容: 我编写了一个php程序,该程序使用ffmpeg从图像序列创建视频。 当我运行它时 它说,, 没有找到 。 ffmpeg:/opt/lampp/lib/libstdc++.so.6:版本’GLIBCXX_3.4.15’不是 找到(由/usr/lib/i386-linux-gnu/libjack.so.0要求)ffmpeg: /opt/lampp/lib/libstdc++.so.6:找不
大家好,当我尝试从终端(linux)运行我的应用程序时,当我运行此命令时,我有下一个错误: 纳服 我在我的终端中得到这个错误: 然后我检查了这个部分: 发生未处理的异常:找不到模块“@angular-开发工具包/构建-角度/包.json” 这部分说找不到名为“' @ angular-dev kit/build-angular/package . JSON '”的模块 然后我在我的项目中签出了这个文
问题内容: 你如何用ng- repeat做这样的事情?我将使用文档中的示例,该示例将一个包含2个朋友的数组初始化为一个数组,如果我只想对所有26岁以上的朋友重复一次该怎么办? 问题答案: 创建一个自定义过滤器。 HTML: 和 JS: