Skip to content

BlooketJS is the first API Wrapper for Blooket — Built by Developers for Developers.

License

Notifications You must be signed in to change notification settings

Blooket-API/BlooketJS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 

Repository files navigation

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!

About

BlooketJS is the first API Wrapper for Blooket — Built by Developers for Developers.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published