return mod(...args); ^ TypeError: Class constructor ServeCommand cannot be invoked without 'new'
时间: 2024-05-06 13:15:08 浏览: 173
这个错误通常表示你在调用一个类的构造函数时,没有使用 `new` 关键字。你需要使用 `new` 调用构造函数来创建一个类的实例。例如:
```js
const serveCommand = new ServeCommand();
```
如果你已经使用了 `new`,则可能是因为你的 `ServeCommand` 类并没有正确地导出,或者在导入时出现了问题。你可以检查一下你的导入和导出是否正确,并确保你的构造函数被正确地导出和导入。
阅读全文