kahoot.js-republished
v1.0.0
Published
A library for interacting with Kahoot API.
Downloads
15
Maintainers
Readme
About
Kahoot.js is a library to interact with the Kahoot API. Currently kahoot.js supports joining and interacting with quizzes.
Installation requires Node.js 6.0.0 or higher.
Basic Example
var Kahoot = require("kahoot.js");
var client = new Kahoot;
console.log("Joining kahoot...");
client.join(9802345 /* Or any other kahoot game pin */, "kahoot.js");
client.on("joined", () => {
console.log("I joined the Kahoot!");
});
client.on("quizStart", quiz => {
console.log("The quiz has started! The quiz's name is:", quiz.name);
});
client.on("questionStart", question => {
console.log("A new question has started, answering the first answer.");
question.answer(0);
});
client.on("quizEnd", () => {
console.log("The quiz has ended.");
});
Documentation / How to use
See Documentation.md.
Examples
See examples/
and tests/
.