yonigibbs / yaet

Yet another Elm Tetris
10 stars 0 forks source link

Elm Tetris

Actions Status

This repo contains a version of Tetris, written in Elm.

Play the game here.

Development

To run the project locally clone the repo, run npm install (only needed once), then run npm run serve. This will start Parcel to serve the app on http://localhost:1234.

The entry point to the app is index.html. This loads index.js, which in turn loads the Elm app itself. The entry point to the Elm code is Main.elm. This module, like the rest, contains comments at the top that explain a bit about it, and should help you find your way around the code.

Possible future enhancements