API wrapper for MyAnimeList.net
npm install --save myanimelist.js
const MyAnimeList = require("myanimelist.js");
// Get users Anime or Manga list
MyAnimeList.getUserList("lapoozza", "anime")
.then(r => r.forEach(x => console.log("+", x.series_title[0])))
.catch(e => console.error(e));
// Search for Anime or Manga
const mal = new MyAnimeList("USERNAME", "PASSWORD");
mal.search("boruto", "anime")
.then(r => console.log(r))
.catch(e => console.error(e));
Copyright (c) 2017 Jewel Mahanta