> For the complete documentation index, see [llms.txt](https://docs.cybralist.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.cybralist.com/npm-module/servercount.md).

# Server Count

```javascript
const Discord = require("discord.js");
const client = new Discord.Client();
const cybralist = require("cybralist.js");
const dbl = new cybralist("TOKEN-HERE", client);

client.on("ready", () => {

    dbl.serverCount();

})

client.login("BOT_TOKEN");
```
