Popularity
2.8
Declining
Activity
3.8
-
20
3
0

Programming language: Elixir
License: MIT License
Tags: Games    

vim_snake alternatives and similar packages

Based on the "Games" category.
Alternatively, view vim_snake alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of vim_snake or a related project?

Add another 'Games' Package

README

Classical multiplayer snake game with Vim-style keybinding

This is a project using Phoenix framework and Phaser to make a multiplayer snake game, inspired by vimsnake.com

Live demo can be found on snake.theanht1.dev or Heroku

Preview

[Gameplay Screenshot](./screen_shot.png)

Requirements

Up and Running

  • Install package

    mix deps.get
    cd assets && npm i && cd ..
    
  • Create and migrate database

    mix ecto.create
    mix ecto.migrate
    
  • Start dev server

    mix phx.server
    

Now you can visit localhost:4000 from your browser.

Deployment

You can follow this instruction to configure for production

TODOs

  • Re-enable login feature (with FB or Google) for reserving username and saving personal highscore
  • Add unit tests