Home > Blockchain >  I keep seeing ShortMove on Chess.js tutorials, but it's not there anymore
I keep seeing ShortMove on Chess.js tutorials, but it's not there anymore

Time:11-07

I'm trying to make a chess game using react. I am using chessboardjsx and chess.js. I am working with an online tutorial: Move error

Can someone tell me if there is an alternative or how I can make Move work? Thanks in advance!

CodePudding user response:

ShortMove is a Typescript type, if you are not using Typescript you don't need to worry about that and can remove it.

If you ARE using typescript and they do not show up you should made sure that in addition to installing the Library from with npm install chess.js you also installed the types by running:

npm install -D @types/chess.js

from the commandline

That command comes from the instalation instructions here: https://github.com/jhlywa/chess.js/blob/master/README.md

  • Related