Repository
Current version released
5 years ago
An easy to operate Roblox API Library for Deno
About
Denblox is a Roblox API Library that is open-sourced. Denblox was designed to make it easier to support ROBLOX without having to write your own API Wrapper. This Library offers multiple functions giving you more access to Roblox.
Constructing
Example
For a quick example of denblox, run this in your terminal. You’ll then be prompted for a Roblox Username.
deno run --allow-net https://deno.land/x/denblox/example.tsImporting
You can import denblox via the mod.ts file, If you need anything else for another cause you can import them at the main package.
Requirements
- Deno Installed
import * as denblox from "https://deno.land/x/denblox/mod.ts";Example
This is a self-explanatory header, but this shows you some basics and how to use the library.
import * as denblox from "https://deno.land/x/denblox/mod.ts";
await denblox.login("|WARNING:-DO-NOT-SHARE-THIS....");
const user = await denblox.getUserByName("t_ru9");
console.log(user);Other
Unnecessary information you might need.