A simple word puzzle game, where users must guess as many words as they can in a time limit without any mistake.
Live demo can be found at:
https://fiery-heat-7049.firebaseapp.com/
Install dependencies via
npm install
and
bower install
You should find that you have two new folders in your project.
node_modules
- contains the npm packages for the tools we needapp/bower_components
- contains the angular framework files
We have preconfigured the project with a simple development web server. The simplest way to start this server is:
npm start
Now browse to the app at http://localhost:8000
.
You can run unit tests using
npm test
You can build minified version using
gulp clean-build
Docs can be built using
gulp build-docs
and served via
gulp serve-docs