Skip to content

Implementing the Snake arcade game in Bacon.js ๐Ÿ

Notifications You must be signed in to change notification settings

fed/bacon-snake

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

19 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

Snake meets Bacon.js

Snake arcade game implementation in Bacon.js using ES6. This is a somewhat modified version of Philip Nilsson's implementation. Most of the topics on this tutorial still apply to this project.

Snake meets Bacon.js

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/.

To just build the app, run npm run build instead. You'll find the build files on the dist folder.