Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/brandly/elm-minesweeper
:bomb:
https://github.com/brandly/elm-minesweeper
bomb elm game minesweeper
Last synced: 2 months ago
JSON representation
:bomb:
- Host: GitHub
- URL: https://github.com/brandly/elm-minesweeper
- Owner: brandly
- Created: 2017-11-06T02:44:11.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-04-29T03:52:53.000Z (over 2 years ago)
- Last Synced: 2024-10-03T15:19:06.526Z (3 months ago)
- Topics: bomb, elm, game, minesweeper
- Language: Elm
- Homepage: https://brandly.github.io/elm-minesweeper/
- Size: 2.87 MB
- Stars: 10
- Watchers: 4
- 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/)
![screenshot](src/images/screenshot.png?raw=true)
### 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
```