1.0.0 • Published 5 years ago

kahoot.js-republished v1.0.0

Weekly downloads
6
License
MIT
Repository
github
Last release
5 years ago

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.
NPM

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/.