Skip to content

Angular Web Application based on socket.io for User Story estimation meetings.

Notifications You must be signed in to change notification settings

TimHolzherr/planning-poker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

73 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Planning-Poker

Why

Planning-Poker is a web app to facilitate User Story estimation meetings. All team members can connect to a planning poker session and vote on the complexity of each ticket. No authentication is required and the votes are anonymous. All session state is stored between clients, nothing is persisted to the server. Build to work on mobile and desktop.

How

Overview over the techniques \ technologies behind the application.

Client

  • Single Page application build with Angular
  • Styling is done with SCSS and Bulma
  • Progressive Web App which uses a service worker for caching and can be installed to the home screen on mobile
  • Uses "naive" server side rendering to decrease perceived load time. The index.html file contains the same markup as the loaded SPA will produce. Once it is loaded the static version is hidden and replaced by the dynamic one. Additionally the critical css is inlined in the index.html using critical.

Server

  • Deployed on Heroku
  • Not a REST Api, instead uses websockets (socket.io) for real time communication. Acts as a relay between all clients of the same session
  • Stateless except the connection state of the sockets, all application state is shared between the clients
  • No user data is persisted, there is no database involved
  • Servers the static assets of the single page application only over https
  • The assets are compressed with gzip

Performance

www.planning-poker.ch reached a performance score of 100/100 on Lighthouse and AAA on webpagetest.

About

Angular Web Application based on socket.io for User Story estimation meetings.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published