UNPKG

growtopia-details

Version:

This module allows you to get online growtopia players count and some things more..

25 lines (22 loc) 588 B
# 🌲 Growtopia Details > This module allows you to get online growtopia players count and some things more.. ## 💾 Installation ```diff $ npm install growtopia-details ``` ## 💠 Basic Usage ```javascript let gt = require("growtopia-details"); gt.getDetail().then(e=>{ console.log(`${e.onlineUsersCount} Players Online!`); console.log(e); }) //-> 10483 Players Online! // { // onlineUsersCount: 10483, // worldOfDay: { // worldName: 'OWOTOFO', // renderURL: 'https://s3.amazonaws.com/world.growtopiagame.com/owotofo.png' // } // } ```