gj-boomlings-api
v2.1.1
Published
A light-weight Geometry Dash API wrapper
Maintainers
Readme
About
gj-boomlings-api is a light-weight Node.js module that makes it easier to interact with Geometry Dash API.
Installation
Node.js
npm i gj-boomlings-api
yarn add gj-boomlings-apiExamples
Download a level
const gd = require("gj-boomlings-api");
gd.downloadLevel("117041578").then(console.log);View a profile
const gd = require("gj-boomlings-api");
gd.getProfile("shikoshib").then(console.log);Get gauntlets
const gd = require("gj-boomlings-api");
gd.getGauntlets().then(console.log);Post a message on a profile
const gd = require("gj-boomlings-api");
gd.uploadAccountPost("I love gj-boomlings-api!", "shikoshib", "your password here");Send a message
// This code makes shikoshib send a message to RobTop
const gd = require("gj-boomlings-api");
gd.uploadMessage("RobTop", "message subject", "message content", "shikoshib", "your password here");