Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tejainece/chess_for_dart

Chess format parser, legal move generation and game state detection library for Dart
https://github.com/tejainece/chess_for_dart

Last synced: about 2 months ago
JSON representation

Chess format parser, legal move generation and game state detection library for Dart

Awesome Lists containing this project

README

        

# Chess for Dart

Chess format parser, legal move generation and game state detection library for Dart

# Features

+ FEN and PGN encoding and decoding
+ Legal move generation

# Parse FEN

```dart
import 'package:chess_for_dart/chess_for_dart.dart';

void main() {
final fen = FEN.parse('rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1');
print(fen.encode());
}
```