Boggle is a word game that is played on a 4x4 board with 16 letter tiles.
The goal is to find as many words as possible given a time constraint.
For this exercise, we are making one modification. Now it is possible for one or more of the letter tiles to be blank (denoted by *).
When a tile is blank, it can be treated as any other letter.
The program is deployed at: https://glitch.com/~boggle-game
- node & npm (this project is bootstrapped using Create-React-App)
- Run the below command:
npm install
- Run the below command:
npm run server
Then you can access the page at http://localhost:9000.
- Run the below command (in separate terminals):
node server/app.js
npm start
Then you can access the page at http://localhost:3000. Your changes in the react components will be auto-reloaded.