Joey Malvinni

Results 2 comments of Joey Malvinni

@lukasm0 You cannot mix ESM and CommonJS imports. `import chess = require('chess'); ` will never work because you aren't initializing a variable while using a require, and you aren't specifying...

> Hello. I use require like [here](https://github.com/Piterden/chessbot/blob/dev/src/handlers/inlineJoin/index.js#L1) > > ```js > const chess = require('chess') > ``` > > and everything work fine. What version of Node.js and chess.js are...