Super simple polls, made easy.
- Create polls with custom response options
- Share polls with shortened URLs
- Vote and view results
Server:
Client:
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
}
]
}MIT