1.0.4 • Published 5 years ago

node-weeb v1.0.4

Weekly downloads
19
License
GPL-3.0
Repository
github
Last release
5 years ago

Features

  • Lightweight.
  • Kitsu anime & manga search functions.
  • Random action images from Weebs.CF
  • Neko.Life search functions

How to install

  • install Node.JS
  • npm install -i node-weeb

Example

const weeb = require('node-weeb');

weeb.anime('bleach').then(res => {
    var data = JSON.parse(res).data[0];.
    console.log(data.attributes.titles.en);
    console.log(data.id);
    console.log(data.attributes.synopsis);
});

weeb.manga('rosario vampire').then(res => {
    var data = JSON.parse(res).data[0];
    console.log(data.attributes.titles.en);
    console.log(data.id);
    console.log(data.attributes.synopsis);
});

weeb.random('hug').then(res => {
    console.log(res);
});

weeb.nekoLife('fact').then(res => {
    var data = JSON.parse(res).fact;
    console.log(data);
});

Author

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago