New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

roblox-api-raw

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

roblox-api-raw

Retrieve the raw JSON Roblox API Dump.

latest
Source
npmnpm
Version
1.4.0
Version published
Weekly downloads
7
-12.5%
Maintainers
1
Weekly downloads
 
Created
Source

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.

Keywords

api

FAQs

Package last updated on 22 Aug 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts