The game of snake, written in vanilla JS.
git clone https://github.com/derekmisler/snake.git
cd snake
npm install
npm start dist/ <!-- This is what gets deployed after building -->
src/
components/ <!-- These update the view -->
constants/ <!-- This contains settings -->
styles/ <!-- SCSS -->
components/ <!-- These represent the view -->
constants/ <!-- This contains variables and settings -->
utils/ <!-- This contains functions and mixins -->
utils/ <!-- This is the primary location of the logic -->- No framework!
sessionStorageacts as the data store.- SCSS for styling.
- Webpack for bundling.