在Node应用程序中导入chessjs。
- 论坛
- 在Node应用程序中导入chessjs。
7 浏览
在Node应用程序中导入chessjs。
我是nodejs的新手,这也许是个愚蠢的问题,但我希望不是。
我试图在一个简单的node应用程序中导入chessjs库。
我有这个:
const Chess = require('chessjs'); var chess = new Chess();
但是我在运行时得到:
Error: Cannot find module './chess.js'
尽管我已经通过npm安装了这个库。
谢谢。
=========== 编辑解决方案 ====================
const {Chess} = require(\'./node_modules/chess.js/chess.js\')
admin 更改状态以发布 2023年5月23日
匿名的
0 Comments