我在全局计算机上安装了“ newman”软件包,并能够在命令行上运行newman
npm install -g newman
但是,我需要在nodejs脚本中运行测试集合,并且以下语句引发异常
找不到模块“ newman”需要堆栈:
const newman = require('newman');
有解决这个问题的想法吗?
奥斯丁
// this is full error stack
internal/modules/cjs/loader.js:797
throw err;
^
Error: Cannot find module 'newman'
Require stack:
- C:\xxx\postman-tests\parallel.js
at Function.Module._resolveFilename (internal/modules/cjs/loader.js:794:15)
at Function.Module._load (internal/modules/cjs/loader.js:687:27)
at Module.require (internal/modules/cjs/loader.js:849:19)
at require (internal/modules/cjs/helpers.js:74:18)
at Object.<anonymous> (C:\xxx\postman-tests\parallel.js:8:16)
at Module._compile (internal/modules/cjs/loader.js:956:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:973:10)
at Module.load (internal/modules/cjs/loader.js:812:32)
at Function.Module._load (internal/modules/cjs/loader.js:724:14)
at Function.Module.runMain (internal/modules/cjs/loader.js:1025:10) {
code: 'MODULE_NOT_FOUND',
requireStack: [
'C:\\xxx\\postman-tests\\parallel.js'
]
}
最佳答案
您已全局安装了newman
软件包。为了在项目中使用它,您需要在项目中本地安装它。如果您的项目没有package.json
文件,则可以通过在项目的根目录中运行npm init
来初始化它。之后,您可以通过npm install newman
安装该软件包以将其添加到您的依赖项中。现在,您的项目中可能需要该软件包。