npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@vxed/kick

v1.6.3

Published

An unofficial client for interacting with Kick's API.

Readme

kick

An unofficial client for interacting with Kick's API.

⚠️ This package is not affiliated with, endorsed by, or sponsored by Kick.com. Use at your own risk.

Installation

npm install @vxed/kick

Authentication

Some methods require authentication using a Kick token. You can get your token from your browser's requests after logging into Kick.com.

Features

  • Subscribe to chat messages
  • Send messages
  • Get user profiles
  • Get channel user profiles
  • Ban/unban users
  • Mod/unmod users
  • Watch livestreams
  • Fetch MODs, VIPs, OGs

Examples

Subscribe to Chat Messages

import { joinChatroom } from '@vxed/kick';

// Get the chatroom ID from the channel profile
const chatroom = joinChatroom('CHATROOM_ID');

// Listen for messages
chatroom.on('message', (message) => {
  console.log(`${message.sender.username}: ${message.content}`);
});

Send a Message

import { chat } from '@vxed/kick';

// Requires authentication
await chat('your-kick-token', 'channel_name', 'Hello, Kick!');

Get User Profile

import { getProfile } from '@vxed/kick';

// Get a user's profile
const profile = await getProfile('username');
console.log(profile);

Get Channel User Profile

import { getChannelUserProfile } from '@vxed/kick';

// Get a user's profile in a specific channel
const userProfile = await getChannelUserProfile('channel_name', 'username');
console.log(userProfile);

API Reference

Chat Methods

| Method | Description | Auth Required | |--------|-------------|---------------| | chat(token, channel, message) | Send a message to a channel | Yes | | joinChatroom(chatroomId) | Subscribe to chat messages | No |

User Methods

| Method | Description | Auth Required | |--------|-------------|---------------| | getProfile(username) | Get a user's profile | No | | getChannelUserProfile(channel, username) | Get a user's profile in a channel | No |

Moderation Methods

| Method | Description | Auth Required | |--------|-------------|---------------| | ban(token, channel, username, duration?) | Ban a user from a channel | Yes | | unmod(token, channel, username) | Remove moderator status from a user | Yes | | mod(token, channel, username) | Make a user a moderator | Yes |

Stream Methods

| Method | Description | Auth Required | |--------|-------------|---------------| | userWatchLivestream(token, username) | Emit "Watch a user's livestream" event | Yes |

Fetch MODs, VIPs, OGs Users

| Method | Description | Auth Required | |--------|-------------|---------------| | getVIPs(channel) | Fetch Users VIPs Rank | No | | getOGs(channel) | Fetch Users OGs Rank | No | | getMODs(channel) | Fetch Users MODs Rank | No |

License

MIT