An app that will allow a software development team to play Planning Poker
Welcome! This app is designed to allow a software development team to play "Planning Poker", a game used to estimate how much time different development tasks will take. To learn more about Planning Poker, check out the article on wikipedia (http://en.wikipedia.org/wiki/Planning_poker). The app will run in your browser and allow your team to silently vote on tasks, then reveal the results.
Clone the repository, open a command line/terminal, and cd into the directory.
Next, start the server by typing:
npm install
then:
PORT=1337 node app.js
Once the server is running, open the app in your browser by navigating to: localhost:1337
You can open multiple tabs to see how multiple users can submit their estimations and view the results.
To rebundle:
browserify site/poker.js > site/bundle.js
Thanks for viewing!