UNPKG

node-geometry-dash

Version:

A node.js module for searching for levels, accounts, getting songs, and the leaderboards of the game Geometry Dash

7 lines (6 loc) 222 B
let GD = require("."); let gd = new GD; gd.levels("yatagarasu ").then(lvl => { lvl = lvl.find(level => level.author.name.toLowerCase() === "trusta"); console.log(lvl); }).catch(()=>console.log("not found"));