Skip to content
This repository has been archived by the owner on May 3, 2024. It is now read-only.

Syrilai/bloxlink-fetch

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Bloxlink Fetch

Promise based library to fetch Bloxlink user data

Table of Contents

Installing

Using npm:

$ npm install bloxlink-fetch

Using yarn:

$ yarn add bloxlink-fetch

Example

const bloxlinkFetch = require("bloxlink-fetch");
// or while using CommonJS:
// import bloxlinkFetch from "bloxlink-fetch";

bloxlinkFetch({
  userId: 1,
  guildId: 0, // optional
})
  .then((data) => {
    console.log(data); // => { account: number; status: "ok" }
  })
  .catch((error) => console.error(error));

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published