Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ryan-haskell/elm-uno
That Uno game we built in Elm live on Twitch!
https://github.com/ryan-haskell/elm-uno
elm game
Last synced: 3 months ago
JSON representation
That Uno game we built in Elm live on Twitch!
- Host: GitHub
- URL: https://github.com/ryan-haskell/elm-uno
- Owner: ryan-haskell
- Created: 2022-04-20T01:44:12.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-09-09T19:26:21.000Z (about 2 years ago)
- Last Synced: 2024-05-02T06:13:08.810Z (6 months ago)
- Topics: elm, game
- Language: Elm
- Homepage: https://uno.rhg.dev
- Size: 216 KB
- Stars: 13
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# @ryannhg/elm-uno
## live demo
Check out the latest progress here:
https://uno.rhg.dev/## running locally
If you have Node.js installed, you can run this command:
```
npm start
```## deploying to Netlify
If you want to deploy a custom version of this to Netlify, use this build command, and point to the `dist` directory:
```
npm run deploy
```( The `deploy` command will run the test suite before building the Elm app! )
## running the test suite
In development, watching for code changes as you go:
```
npm run test:watch
```In production, running the test suite once (and failing if something's wrong!)
```
npm run test
```