Darts is a form of throwing game in which small missiles are thrown at a circular dartboard fixed to a wall.
An AngularJS app to play darts:
- choose players
- select point for each shooting
- see the summary
- win your match
Project requires:
Please run following commands to install all dev-dependencies
:
$ npm install
and
$ bower install
Then run gulp
to create the development
and production
builds of the app.
After all of these steps the project structure should match the following one:
bower_components/ // Hosts all bower dependencies
dist/ // Contains builds
node_modules/ Hosts all npm dependencies
src/ // The source folder
...
...
bower.json
gulpfile.js
karma.conf.js
package.json
...
Then run npm start
to access the application at http://localhost:8000/
The entire AngularJS source code is within the src
folder.
Click here for more details.
Test suite can be run with the following command:
npm test
Take a look at CONTRIBUTING.md for more details.