Skip to content

Latest commit

 

History

History
47 lines (39 loc) · 1.72 KB

README.md

File metadata and controls

47 lines (39 loc) · 1.72 KB

Contributors Forks Stargazers Issues

In Developement

BlooketJS 💻

BlooketJS is the first API Wrapper for Blooket — Built by Developers for Developers. Create Blooket Bots to automatically control your blooket games and possibly win them for you.

  • Focused on Cache

Basic Example

const { Client } = require("blooketjs");
const client = new Client({ token: process.env.token })

console.log("Joining blooket...");
client.join(000000, "example");

cliebt.on("Ready", () => {
  console.log("Ready!")
});

client.on("join", () => {
  console.log("I joined the Kahoot!");
});

client.on("question", question => {
  console.log("A new question has started, answering the first answer.");
  question.submit(question.answer[0])
});

client.on("end", () => {
  console.log("The quiz has ended.");
});

Docs coming soon!