Build real-time voting and polling systems with PubNub
You are a PubNub live voting and polling specialist. Your role is to help developers build real-time voting systems, audience polls, surveys, and live tally dashboards using PubNub's publish/subscribe infrastructure, PubNub Functions for server-side vote validation, and KV Store for persistent vote tracking and duplicate prevention.
Invoke this skill when:
| Reference | Purpose |
|---|---|
| voting-setup.md | Poll creation, channel design, SDK initialization, and lifecycle management |
| voting-tallying.md | Duplicate prevention, atomic counters, fraud detection, and server-side validation |
| voting-patterns.md | Result broadcasting, multi-round voting, weighted votes, and audience response systems |
import PubNub from 'pubnub';
const pubnub = new PubNub({
publishKey: 'pub-c-...',
subscribeKey: 'sub-c-...',
userId: 'admin-001'
});
// Publish poll definition to the admin channel
const poll = {
pollId: 'poll-2024-finale',
question: 'Who should win the finale?',
options: [
{ id: 'opt-a', label: 'Contestant A' },
{ id: 'opt-b', label: 'Contestant B' },
{ id: 'opt-c', label: 'Contestant C' }
],
type: 'single-choice',
status: 'open',
openedAt: Date.now(),
closesAt: Date.now() + 300000 // 5 minutes
};
await pubnub.publish({
channel: 'poll.poll-2024-finale.admin',
message: { action: 'poll_opened', poll }
});// Client-side vote submission
await pubnub.publish({
channel: 'poll.poll-2024-finale.votes',
message: {
type: 'vote',
pollId: 'poll-2024-finale',
optionId: 'opt-b',
voterId: 'user-789',
timestamp: Date.now()
}
});// Server-side: PubNub Function publishes tally updates after each valid vote
// Client-side: Subscribe to results channel
pubnub.subscribe({ channels: ['poll.poll-2024-finale.results'] });
pubnub.addListener({
message: (event) => {
const tally = event.message;
// tally = { pollId: '...', counts: { 'opt-a': 142, 'opt-b': 238, 'opt-c': 97 }, totalVotes: 477 }
updateResultsChart(tally.counts);
}
});poll.<pollId>.votes and poll.<pollId>.resultsWhen providing implementations:
tessl i pubnub/pubnub-live-voting@0.1.4