1.0.5 • Published 2 years ago

kick-api-wrapper v1.0.5

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

kick-api-wrapper allows you to access Kick's currently private API.

  • Headless browser to avoid Cloudflare block
  • Built-in caching to avoid unnecessary requests
  • Simplistic codebase - simple to addon to
npm install kick-api-wrapper
const Client = require('kick-api-wrapper');

const client = new Client({
    cache: {
        enabled: true,
        ttl: 60000
    }
});

client.getChannel('adinross').then(channel => {
    console.log(channel.user_id);
    // Returns: 904404
});

Feel free to open an issue / pull request to add an endpoint.

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago