simple javbus api in node.js
$ npm install node-javbus
const javbus = require('node-javbus')();
(async () => {
const videos = await javbus.page(1);
console.log(videos);
const show = await javbus.show(videos[0].id);
console.log(show);
const files = await javbus.magnet(show.gid);
console.log(files);
})();
- Fork this Repo first
- Clone your Repo
- Install dependencies by
$ npm install
- Checkout a feature branch
- Feel free to add your features
- Make sure your features are fully tested
- Publish your local branch, Open a pull request
- Enjoy hacking <3
This work is licensed under the MIT license.