Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

Simple Polls

Super simple polls, made easy.

Features

  • Create polls with custom response options
  • Share polls with shortened URLs
  • Vote and view results

Technologies used

Server:

Client:

Data model

Initially the only data saved are polls, containing a question, a short URL, responses, and their vote totals. Their structure is outlined below.

{
  id: String,
  url: String,
  question: String,
  options: [
    {
      text: String,
      votes: Number
    }
  ]
}

License

MIT

About

Super simple polls, made easy.

Resources

Stars

Watchers

Forks

Releases

Packages

Contributors