# abl-wrapper

> Astro bot list js api wrapper

Latest version **1.1.7** (published 2020-10-18) · MIT license · 0 weekly downloads

## Install

```sh
npm install abl-wrapper
pnpm add abl-wrapper
yarn add abl-wrapper
bun add abl-wrapper
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.1.7 |
| Published | 2020-10-18 |
| First published | 2020-10-06 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 4.3 KB |
| Known vulnerabilities | 0 (+25 in 1 direct dependencies) |
| Install scripts | no |
| GitHub stars | 0 |
| Author | sell |
| Maintainers | terrible_dev |
| Keywords | astro bot list |

## Links

- npm: https://www.npmjs.com/package/abl-wrapper
- Repository: https://github.com/sell/abl-wrapper
- Homepage: https://github.com/sell/abl-wrapper#readme
- Issues: https://github.com/sell/abl-wrapper/issues
- npm.io page: https://npm.io/package/abl-wrapper

## Dependencies (1)

- [axios](https://npm.io/package/axios.md) ^0.20.0

## Recent versions

- 1.1.7 (latest) — 2020-10-18
- 1.0.6 — 2020-10-06
- 1.0.5 — 2020-10-06
- 1.0.4 — 2020-10-06
- 1.0.3 — 2020-10-06
- 1.0.2 — 2020-10-06
- 1.0.1 — 2020-10-06
- 1.0.0 — 2020-10-06

## README

<h1 align="center">Astro Bot List Javascript wrapper</h1>

<p>Send your guild count easily</p>

[https://botlists.com](https://botlists.com)

```js
const { abl } = require('abl-wrapper');
const { client } = require('discord.js');
const client = new Client({
    disableEveryone: true,
})

abl.count('token', client, (error, success) => {
    if(error) throw new Error(error);
    else console.log(success)
});
```

<h3>Getting Bots Stats</h3>

Using .then()
```js
abl.stats('abl token')
    .then(d => console.log(d))
    .catch(e => console.log(e.response.data));
```

Using async/await
```js
(async () => {
    const ablStats = await abl.stats('abl token');
    console.log(ablStats)
})();
```

---
_Source: https://npm.io/package/abl-wrapper · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
