Skip to content

Releases: vmolero/simple-blackjack

Full local storage through object serialization

15 Mar 17:44
9392647
Compare
Choose a tag to compare

New in this release:

  • Typescript serialization via implementing fromJSON and toJSON methods (see http://choly.ca/post/typescript-json/)
  • Full board state is saved along with game counters, so you can resume a game previously saved.

Basic game setup

09 Mar 22:08
416b31d
Compare
Choose a tag to compare

Basic rules as they were created in the original plain Javascript game:

  • Simple BlackJack rules (as the Spanish "21" game).
  • Discrete layout with card sprite.
  • Save and reset using browser local storage.

New in this release (to the old version)

  • React components
  • Typescript
  • Jest tests