Skip to content
This repository has been archived by the owner on Jun 14, 2024. It is now read-only.

Latest commit

 

History

History
58 lines (39 loc) · 1.46 KB

README.md

File metadata and controls

58 lines (39 loc) · 1.46 KB

tyblox.js

The most powerful ROBLOX API Wrapper


npm version npm downloads Tests status


tyblox.js is the most powerful Node.js package which allows you to quickly, and easily interact with the Roblox API.

  • Object-Oriented
  • Performant
  • Typescript Capable

Installation

Node.js 16.6.0 or newer is required for this to work properly

NPM 7.0.0 or newer is required to work properly.

$ npm install tyblox.js

$ yarn add tyblox.js

or for development previews, which may be buggy

$ npm install tyblox.js@dev

Getting started

Below is an example to login and access many features of tyblox.js

require("dotenv").config();
const { Client } = require("tyblox.js");

const client = new Client();

client.on("ready", () => {
  console.log("Ready!");

  console.log("Logged in as " + client.user.username);
});

client.login(process.env.example_cookie);