1.1.0 • Published 1 year ago

blookit v1.1.0

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago

Blookit

A Node.js module for interacting with the Blooket API written in TypeScript with Node v19. Supports most common API endpoints including login, open pack, sell blook, add rewards, and more. To get started simply install the module and create a new instance of the client class. The client class will handle all of the API requests for you. If you have any questions or need help feel free to join the Discord server.

Installation

npm i blooket.js
yarn add blooket.js
pnpm add blooket.js

Usage

const Blooket = require("blookit");

const credentials = {
    email: "email",
    password: "password"
};

const client = new Blooket.Client(credentials.email, credentials.password);

client.login().then(() => {
    console.log("Logged in!");
});

View more examples inside of the ./examples directory.

1.1.0

1 year ago

1.0.6

1 year ago

1.0.5

1 year ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago