# mailist

> An Unofficial Anilist API Wrapper And Strongly Typed

Latest version **1.0.3** (published 2020-12-25) · MIT license · 0 weekly downloads

## Install

```sh
npm install mailist
pnpm add mailist
yarn add mailist
bun add mailist
```

## Health

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

Positive: has types; no vulnerabilities.

Warnings: low downloads; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.3 |
| Published | 2020-12-25 |
| First published | 2020-08-25 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 2 |
| Unpacked size | 30.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 7 |
| Author | Aizuu |
| Maintainers | izuu4302 |
| Keywords | anilist, anime, animesearch, anilist-wrapper, anilist-api |

## Links

- npm: https://www.npmjs.com/package/mailist
- Repository: https://github.com/iseizuu/MaiList
- Homepage: https://github.com/iseizuu/MaiList#readme
- Issues: https://github.com/iseizuu/MaiList/issues
- npm.io page: https://npm.io/package/mailist

## Dependencies (2)

- [cheerio](https://npm.io/package/cheerio.md) ^1.0.0-rc.5
- [node-superfetch](https://npm.io/package/node-superfetch.md) ^0.1.10

## Alternatives

- [jsforce](https://npm.io/package/jsforce.md) — 851.2K weekly downloads
- [react-native-qrcode-svg](https://npm.io/package/react-native-qrcode-svg.md) — 693.5K weekly downloads
- [@salesforce/plugin-data](https://npm.io/package/@salesforce/plugin-data.md) — 394.9K weekly downloads
- [@backstage/plugin-search-common](https://npm.io/package/@backstage/plugin-search-common.md) — 308.5K weekly downloads
- [@chain-registry/types](https://npm.io/package/@chain-registry/types.md) — 38.4K weekly downloads

## Recent versions

- 1.0.3 (latest) — 2020-12-25
- 1.0.2 — 2020-09-06
- 1.0.1 — 2020-08-25

## README

# MaiList
An Unofficial [Anilist](https://anilist.co/) API Wrapper And Strongly Typed

- [Documentation](soon) _not yet_

## Installing
[![Version](https://nodei.co/npm/mailist.png?compact=true)](https://nodei.co/npm/mailist)
```sh
#npm
npm install mailist

#yarn
yarn add mailist
```

## Example Usage

### Anime
###### Methods
- **anime**(query: string)
- **Mal**(id: string)
- **voiceActors**(query: string)


```js
const { Anime } = require("mailist");
const get = new Anime();

function getAnime() {
    get.anime("Majo No Tabi-Tabi")
        .then(res => {
            console.log(res)
        });
}
getAnime()
```
- **Getting voice actors from anime title**
```js
function voiceActors() {
    get.voiceActors("Aho Girl")
        .then(res => {
            console.log(res)
        });
}
voiceActors()
```

### Manga
###### Methods
- **manga**(query: string)
- **Mal**(id: string)

```js
const { Manga } = require("mailist");
const get = new Manga();

function getManga() {
    get.manga("Quintessential Quintuplets")
        .then(res => {
            console.log(res)
        })
}
getManga()
```
### Character
###### Methods
- **character**(query: string)

```js
const { Character } = require("mailist");
const get = new Character();

function getChar() {
    get.character("Elaina")
        .then(res => {
            console.log(res)
        })
}
getChar()
```

## Nb
Actually i don't know how to write the docs, but i hope you understand, and if you have any questions, you can join my [Discord Server](https://discord.gg/YmJEcFR)

© [Aizuu](https://github.com/iseizuu)

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