https://github.com/kawaiioverflow/arm
A JSON-based database to relational mapping Anime ID's between MyAnimeList, Annict, AniList and Syoboi Calendar
https://github.com/kawaiioverflow/arm
anilist anime annict database mal myanimelist syobocal syoboi-calendar
Last synced: 2 months ago
JSON representation
A JSON-based database to relational mapping Anime ID's between MyAnimeList, Annict, AniList and Syoboi Calendar
- Host: GitHub
- URL: https://github.com/kawaiioverflow/arm
- Owner: kawaiioverflow
- Created: 2020-08-26T14:01:34.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2026-02-19T12:26:09.000Z (3 months ago)
- Last Synced: 2026-02-19T16:54:39.552Z (3 months ago)
- Topics: anilist, anime, annict, database, mal, myanimelist, syobocal, syoboi-calendar
- Language: TypeScript
- Homepage: https://npm.im/@kawaiioverflow/arm
- Size: 15.1 MB
- Stars: 32
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README

# arm
@kawaiioverflow/arm is a JSON-based database to relational mapping Anime ID's between MAL, Annict, AniList and Syobocal.
## Install
```sh
npm i @kawaiioverflow/arm
```
or
```sh
yarn add @kawaiioverflow/arm
```
## Usage
```ts
import { arm } from '@kawaiioverflow/arm'
console.log(arm)
/*
[
{
"mal_id": 5114,
"anilist_id": 5114,
"annict_id": 1745,
"syobocal_tid": 1575
},
...
]
*/
```
## Database
### Return values
Return an array of `Anime` type.
```ts
type Anime = {
mal_id?: number
annict_id?: number
anilist_id?: number
syobocal_tid?: number
}
```
### Statistics
The database has **36020** anime, it consists of data from several services.
| Service | Anime |
| :-------------- | :---------- |
| MyAnimeList | 29883 anime |
| AniList | 22185 anime |
| Annict | 16831 anime |
| Syoboi Calendar | 6538 anime |
### Release cycle
Once a week, it will be delivered via npm.
---
Inspired by manami-project/anime-offline-database.