Getting Error: Cannot find module 'js-yaml'
Getting Error: Cannot find module 'js-yaml'
我已经用这个命令安装了 js-yaml
npm i @types/js-yaml
我的package.json
看起来像这样
"dependencies": {
"@types/js-yaml": "^4.0.5",
"aws-cdk-lib": "2.20.0",
"constructs": "^10.0.0",
"source-map-support": "^0.5.16",
"ts-sync-request": "^1.4.1"
}
而且我的代码在 vscode
中没有显示任何错误
import * as yml from 'js-yaml';
...
const metricsServerManifestUrl = 'https://github.com/kubernetes-sigs/metrics-server/releases/latest/download/components.yaml';
const manifest = yml.loadAll(new SyncRequestClient().get(metricsServerManifestUrl));
cluster.addManifest('metrics-server', manifest);
但是当我尝试 运行 应用程序时出现此错误
Error: Cannot find module 'js-yaml'
我该如何解决这个问题?
@types/js-yaml
仅包含 TypeScript 编译器用来验证代码的类型定义。但是,它不包含运行时所需的实际实现。
您应该安装 npm install js-yaml --save
。
我已经用这个命令安装了 js-yaml
npm i @types/js-yaml
我的package.json
看起来像这样
"dependencies": {
"@types/js-yaml": "^4.0.5",
"aws-cdk-lib": "2.20.0",
"constructs": "^10.0.0",
"source-map-support": "^0.5.16",
"ts-sync-request": "^1.4.1"
}
而且我的代码在 vscode
import * as yml from 'js-yaml';
...
const metricsServerManifestUrl = 'https://github.com/kubernetes-sigs/metrics-server/releases/latest/download/components.yaml';
const manifest = yml.loadAll(new SyncRequestClient().get(metricsServerManifestUrl));
cluster.addManifest('metrics-server', manifest);
但是当我尝试 运行 应用程序时出现此错误
Error: Cannot find module 'js-yaml'
我该如何解决这个问题?
@types/js-yaml
仅包含 TypeScript 编译器用来验证代码的类型定义。但是,它不包含运行时所需的实际实现。
您应该安装 npm install js-yaml --save
。