无法启动应用-获取(节点:20144)UnhandledPromiseRejectionWarning:
我是电极新手。我的团队成员中很少有人在该分支机构拥有工作代码。我已经签出了相同的分支,这对其他开发人员来说效果很好。我尚未在本地修改任何代码,但无法使用-clap dev命令启动应用程序
我正处于警告之下
(node:20144) UnhandledPromiseRejectionWarning:
import {getLogger, ClientSupport, Util} from '@euf/core'
^
SyntaxError: Unexpected token {
.....
.....
...
(node:20144) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1)
(node:20144) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
该代码中似乎没有此问题,因为同一代码对其他人也可以正常工作。 我感觉到我已经安装了一些软件包,这可能是原因,因为默认情况下它会安装较新的版本。
它抱怨代码中的所有“ import”语句
代码示例:
import RemoteLoggingRouter from "@euf/core/lib/server/logger/RemoteLoggingRouter";
如果您在抱怨的文件中注释掉了几个导入语句,那么它将开始抱怨其他文件中使用的其他导入语句。
我需要解决此问题,以便可以在本地启动该应用程序