An online implementation of the Lights Out game.
https://lightsout-game.lixquid.com
- Click on a cell to toggle its state, as well as the state of its neighbors.
- Depending on the game mode, what counts as a neighbor may vary.
- The goal is to turn off all the lights.
- Clone the repository
- Install dependencies:
yarn install
- Start the development server:
yarn start
- Open http://localhost:8080 in your browser
Changes to the source files will be automatically reloaded in the browser.
- Remove the
dist
folder:- *nix:
rm -rf dist
- Windows:
rmdir /s /q dist
- *nix:
- Build the project:
yarn build
- The production files will be in the
dist
folder
Production files can be served from any static file server.