我正在尝试使用不在我的Angular2应用程序中为TS制作的公共节点模块(websocket)。我还安装了@types/websocket并以这种方式将其导入我的服务中:
import * as WebSocket from 'websocket';
或
import { client } from 'websocket';
并实例化,VScode或ngBuild中没有错误,但在我的浏览器控制台中出现此错误:
TypeError: __WEBPACK_IMPORTED_MODULE_1_websocket__.client is not a constructor
但它实际上是一个构造函数!我在expressjs和常规节点中使用它,并且每件事都很好。