Giter Site home page Giter Site logo

kick-nodejs's Introduction

kick-nodejs

kick-nodejs is a Node.js library that provides methods for retrieving livestream data from the kick.com website. Behind the curtain, Puppeteer is used to execute fetch requests to the unofficial API.

Installation

To use KickNodeJS in your Node.js project, you can install it via npm. Run the following command:

npm install kick-nodejs

Usage

Here's an example of how to use kick-nodejs:

import { KickNodeJS } from 'kick-nodejs';

const kick = new KickNodeJS();

async function fetchLivestreams() {
    try {
        await kick.init();

        const livestreams = await kick.getLivestreams({
            page: 1,
            limit: 10,
            subcategory: 'sports',
            sort: 'desc',
        });

        console.log(livestreams);
    } catch (error) {
        console.error('Error fetching livestreams:', error);
    } finally {
        await kick.stop();
    }
}

fetchLivestreams();

Contributing

Contributions are welcome! If you have any ideas, improvements, or bug fixes, please open an issue or submit a pull request.

To contribute to KickNodeJS, follow these steps:

  1. Fork the repository.
  2. Create a new branch for your feature/fix.
  3. Make your changes and commit them with descriptive commit messages.
  4. Push your changes to your forked repository.
  5. Submit a pull request to the main repository.

Please ensure that your code adheres to the existing code style. Also, make sure to update the documentation as needed.

Together, we can make kick-nodejs better!

License

This project is licensed under the MIT License. See the LICENSE file for more details.

kick-nodejs's People

Contributors

waaverecords avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

kick-nodejs's Issues

QUESTION

Will there be a feature to get a notification when a kick user goes live?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.