Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Pollmommy | 36 | 2 | 9 months ago | 99 | October 25, 2021 | 26 | mit | JavaScript | ||
⭐️ Hack your 🙈 vote out of 📈 Polldaddy surveys - used by 💰 BBC, Microsoft, Forbes, Pfizer, IBM | ||||||||||
Pbhackathon 2016 | 13 | 7 years ago | other | JavaScript | ||||||
Guided tour and survey app using IBM Watson - Palm Beach Hackathon entry 2016 | ||||||||||
Awesome Oss Data Analytics | 6 | 7 years ago | CSS | |||||||
A curated list of open source alternatives for data analytics start-up products. | ||||||||||
Typeform Watson Tone | 3 | 5 years ago | Python | |||||||
Workshop on ways of making Typeform surveys talk using Watson | ||||||||||
Pollmommy | 1 | 7 years ago | mit | JavaScript | ||||||
:star: Hack your :see_no_evil: vote out of :chart_with_upwards_trend: Polldaddy surveys - used by :moneybag: BBC, Microsoft, Forbes, Pfizer, IBM |
Uses a headless browser to visit a poll website and inject JavaScript code to perform the desired poll voting.
npm install pollmommy -g
Parameter | How to get it |
---|---|
URL |
The poll's website URL, Polldaddy's poll website or the embedded poll website. |
Poll id |
The Polldaddy's poll identifier, inspect the website HTML code and search for this pattern PDI_containerNUMBER - NUMBER will be the id. |
Poll option id |
The Polldaddy's poll option identifier, pick the desired option and inspect the website HTML code and search for this pattern PDI_answerNUMBER - NUMBER will be the id. |
pollmommy http://bbc.co.uk/should-trump-be-fired.html 324345 12939
const Pollmommy = require('pollmommy')
const pollmommy = new Pollmommy()
pollmommy.vote('http://bbc.co.uk/should-trump-be-fired.html', 324345, 12939)
.then(() => console.log('Voted successfully!'))
.catch((error) => console.error(error.message))