A simple game for guessing numbers.
git clone https://github.com/ppalladino/guess-the-number.git
Open /index.html in your browser and have fun!
The development environment uses Node.js to execute tooling: development server, transpiling, linting, unit testing, and, building.
-
install Node.js.
-
Install dependency packages and start the development server.
cd guess-the-number
npm install
npm run start
- View the application in your browser by navigating to http://localhost:8080.
- Any changes to source will hot reload the browser and automatically trigger a linting cycle.
Game scripts are tested and then bundled into /dist
npm run build
Uses the airbnb eslint config
npm run lint
npm run test