https://github.com/brandly/elm-minesweeper
:bomb:
https://github.com/brandly/elm-minesweeper
bomb elm game minesweeper
Last synced: 3 months ago
JSON representation
:bomb:
- Host: GitHub
- URL: https://github.com/brandly/elm-minesweeper
- Owner: brandly
- Created: 2017-11-06T02:44:11.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-12-29T19:23:00.000Z (7 months ago)
- Last Synced: 2025-04-23T21:08:19.806Z (3 months ago)
- Topics: bomb, elm, game, minesweeper
- Language: Elm
- Homepage: https://brandly.github.io/elm-minesweeper/
- Size: 2.88 MB
- Stars: 10
- Watchers: 3
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# elm-minesweeper
[Play it here!](https://brandly.github.io/elm-minesweeper/)

### development
Set up.
```shell
$ npm install
$ npm start
```At this point, you could open static files and manually build after changing files.
```shell
$ open dist/index.html
$ npm run build
```You could also use `elm reactor` to automatically run your build. Just refresh the page after making changes.
```shell
$ npm run reactor
$ open http://localhost:8000/src/Main.elm
````elm-format` is used to format the code here.
```shell
$ npm run format
```