https://github.com/lsongdev/node-javbus
🔞 [NSFW] simple javbus api in javascript
https://github.com/lsongdev/node-javbus
javbus
Last synced: 2 months ago
JSON representation
🔞 [NSFW] simple javbus api in javascript
- Host: GitHub
- URL: https://github.com/lsongdev/node-javbus
- Owner: lsongdev
- License: mit
- Created: 2019-07-31T05:59:41.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-06-20T16:21:19.000Z (over 4 years ago)
- Last Synced: 2024-12-31T10:05:32.620Z (9 months ago)
- Topics: javbus
- Language: JavaScript
- Homepage: https://npmjs.org/node-javbus
- Size: 6.84 KB
- Stars: 19
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## node-javbus
> simple javbus api in node.js
[](https://npmjs.org/node-javbus)
### Installation
```bash
$ npm install node-javbus
```### Example
```js
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);})();
```### Contributing
- 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### MIT
This work is licensed under the [MIT license](./LICENSE).
---