JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 173
  • Score
    100M100P100Q80581F
  • License ISC

A NodeJS Roblox library

Package Exports

  • maxblox.js
  • maxblox.js/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (maxblox.js) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme



Discord server npm version npm downloads

About

maxblox.js is a convenient npm library that simplifies the usage of the Roblox API, making it easier for developers to interact with Roblox in their Node.js projects.

Features

  • Simplified and streamlined integration of the Roblox API
  • Easy authentication and login process
  • Access to various Roblox API endpoints and functionalities

Installation

npm install maxblox.js

Import Files

Here's an example of import zoblox.js in your project:

const { Max } = require('maxblox.js');
// If you are using ES6 modules, follow the following code:
import { Max } from 'maxblox.js';

Usage

Here's an example of how to log in and retrieve the username and ID using maxblox.js:

const max = new Max();

max.on('userReady', () => console.log(`Logged in : ${max.me.username} `));

(async () => {
  await max.login(COOKIE); // Replace COOKIE with your RobloxSecurity
})();

Help

If you don't understand something in the documentation, you are experiencing problems, or you just need a gentle nudge in the right direction, please don't hesitate to join our official zoblox.js Server.

Developers