https://github.com/fed/bacon-snake
Implementing the Snake arcade game in Bacon.js 🐍
https://github.com/fed/bacon-snake
bacon-snake baconjs frp functional-reactive-programming snake-arcade-game snake-game
Last synced: 11 months ago
JSON representation
Implementing the Snake arcade game in Bacon.js 🐍
- Host: GitHub
- URL: https://github.com/fed/bacon-snake
- Owner: fed
- Created: 2016-03-07T11:33:59.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2017-02-06T18:11:25.000Z (over 9 years ago)
- Last Synced: 2025-03-12T03:43:16.069Z (over 1 year ago)
- Topics: bacon-snake, baconjs, frp, functional-reactive-programming, snake-arcade-game, snake-game
- Language: JavaScript
- Homepage:
- Size: 23.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Snake meets Bacon.js
Snake arcade game implementation in Bacon.js using ES6. This is a somewhat modified version of [Philip Nilsson's implementation](https://github.com/philipnilsson/Snake-Bacon). Most of the topics on [this tutorial](http://philipnilsson.github.io/badness/) still apply to this project.

## Building
Run `npm install` the first time you clone this project in order to fetch all the dependencies.
For development purposes, Grunt's default task will automatically watch all of your source files for changes, build the appropriate distribution files and refresh the page for you. To run start the app and the watch task, run `npm start`. The app will go live on [http://localhost:6789/](http://localhost:6789/).
To just build the app, run `npm run build` instead. You'll find the build files on the `dist` folder.