An open API service indexing awesome lists of open source software.

https://github.com/tyradigital/tyblox.js


https://github.com/tyradigital/tyblox.js

api api-wrapper js node nodejs roblox roblox-api roblox-api-wrapper roblox-js

Last synced: 9 months ago
JSON representation

Awesome Lists containing this project

README

          

tyblox.js

The most powerful ROBLOX API Wrapper






npm version
npm downloads
Tests status


---

**tyblox.js** is the most powerful [Node.js](https://nodejs.org/) 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.**

```sh
$ npm install tyblox.js

$ yarn add tyblox.js
```

**or for development previews, which may be buggy**

```sh
$ npm install tyblox.js@dev
```

---

## Getting started

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

```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);
```