JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 24
  • Score
    100M100P100Q50951F
  • License MIT

Retrieve the raw JSON Roblox API Dump.

Package Exports

  • roblox-api-raw

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 (roblox-api-raw) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

roblox-api-raw

Build Status Release Downloads License

Retrieve the raw JSON Roblox API Dump.

Installation

Install roblox-api-raw through npm:

$ npm install roblox-api-raw

Usage

Retrieve the latest version of the Roblox API dump through getLatestVersion().

import * as RobloxApi from "roblox-api-raw";

const version = await RobloxApiDump.getLatestVersion();
console.log(version); // => version-7f176a3bbd5e424e

// Ensure we're a module for top-level await.
export {};

Retrieve the latest version of the Roblox API dump through getApiDump() or, similarly, retrieve the Roblox API dump for a certain version with getApiDump(version).

import * as RobloxApi from "roblox-api-raw";

const apiDump = await RobloxApiDump.getApiDump();
console.log(apiDump.Version); // => 1

// Ensure we're a module for top-level await.
export {};

roblox-api-raw retrieves the Roblox API dump as-is.

API

View the full documentation here.

License

This package is available as open source under the terms of the MIT License.