1.0.5 • Published 11 months ago

kick-api-wrapper v1.0.5

Weekly downloads
-
License
ISC
Repository
-
Last release
11 months 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

11 months ago

1.0.4

11 months ago

1.0.3

11 months ago

1.0.2

11 months ago

1.0.1

11 months ago

1.0.0

11 months ago