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

hive-react-kit

v0.3.1

Published

A comprehensive React component library for building Hive blockchain applications with modern UI components.

Readme

Hive React Kit

A comprehensive React component library for building Hive blockchain applications with modern UI components.

Features

  • 🎨 Modern UI Components - Built with shadcn/ui and Radix UI primitives
  • 🔗 Hive Integration - Ready-to-use components for Hive blockchain
  • 📱 Responsive Design - Mobile-first approach with Tailwind CSS
  • 🎯 TypeScript Support - Full TypeScript support with type definitions
  • 🚀 Tree Shaking - Optimized bundle size with tree shaking support
  • 🎭 Customizable - Easy to customize and extend

Installation

npm install hive-react-kit
# or
yarn add hive-react-kit
# or
pnpm add hive-react-kit

Usage

Basic Import

import { VideoCard, VideoFeed, Wallet } from 'hive-react-kit';

UI Components

import { Button, Card, Input } from 'hive-react-kit/ui';

Hooks

import { useMobile } from 'hive-react-kit/hooks';

Types

import type { Video, Comment, Wallet as WalletType } from 'hive-react-kit/types';

Components

Main Components

  • VideoCard - Display video content with metadata
  • VideoFeed - Feed of videos with pagination
  • VideoDetail - Detailed video view
  • VideoInfo - Video information display
  • Wallet - Hive wallet integration

Community Components

  • CommunitiesList - List of communities
  • CommunityDetail - Community details
  • CommunityAbout - Community about section
  • CommunityMembers - Community members list
  • CommunityTeam - Community team members

Modal Components

  • CommentsModal - Comments display modal
  • DescriptionModal - Description editing modal
  • UpvoteListModal - Upvote list modal
  • Modal - Base modal component

User Components

  • UserAccount - User account management
  • UserProfilePage - User profile page
  • UserInfo - User information display
  • UserFollowers - User followers list
  • UserFollowing - User following list

Toolbar Component

  • HiveToolbar - A fixed bottom toolbar showcasing Hive ecosystem apps and witness voting links. Responsive across mobile, tablet, and desktop.

HiveToolbar Usage

import { HiveToolbar } from 'hive-react-kit';

// Show all items (default)
<HiveToolbar />

// Hide specific items
<HiveToolbar isDistriator={false} isHpolls={false} />

// Custom background color
<HiveToolbar backgroundColor="#1a1a2e" />

HiveToolbar Props

| Prop | Type | Default | Description | |------|------|---------|-------------| | isDistriator | boolean | true | Show/hide Distriator link | | isCheckinwithxyz | boolean | true | Show/hide CheckinWithXYZ link | | isHreplier | boolean | true | Show/hide HReplier link | | isHpolls | boolean | true | Show/hide HPolls link | | isHstats | boolean | true | Show/hide HStats link | | isHsnaps | boolean | true | Show/hide HSnaps link | | isHiveFestFacts | boolean | true | Show/hide HiveFestFacts link | | backgroundColor | string | '#ffffff' | Toolbar background color | | textColor | string | '#4b5563' | Text color for all app names | | borderTopColor | string | '#e2e8f0' | Top border color of the toolbar |

Note: Vote Witness Sagar, Vote Witness 3Speak, and 3Speak are always visible and cannot be hidden.

Toolbar Items

| Item | URL | |------|-----| | Vote Witness Sagar | https://vote.hive.uno/@sagarkothari88 | | Vote Witness 3Speak | https://vote.hive.uno/@threespeak | | Distriator | https://distriator.com/ | | CheckinWithXYZ | https://checkinwith.xyz/ | | HReplier | https://hreplier.sagarkothari88.one/ | | HPolls | https://hpolls.sagarkothari88.one/ | | HStats | https://hstats.sagarkothari88.one/ | | HSnaps | https://hsnaps.sagarkothari88.one/ | | 3Speak | https://3speak.tv/ | | HiveFestFacts | https://hivefestfacts.sagarkothari88.one/ |

Feed Components

  • PostFeedList - Display a list of posts with sorting, filtering, and interaction capabilities

PostFeedList Props

| Prop | Type | Default | Description | |------|------|---------|-------------| | sort | PostSort | 'trending' | Sort order for posts. Options: 'trending', 'hot', 'created' | | tag | string | '' | Filter posts by tag | | observer | string | 'hive.blog' | Observer account for filtering | | limit | number | 20 | Number of posts to load per request | | onAuthorClick | (author: string, avatar: string) => void | - | Callback when author is clicked | | onPostClick | (post: Post) => void | - | Callback when post is clicked | | onCommunityClick | (communityTitle: string) => void | - | Callback when community is clicked | | onPayoutClick | (payout: number) => void | - | Callback when payout is clicked | | onUpvoteClick | (post: Post) => void | - | Callback when upvote button is clicked | | onCommentClick | (post: Post) => void | - | Callback when comment button is clicked | | onReblogClick | (post: Post) => void | - | Callback when reblog button is clicked |

Setup

Make sure to install the required peer dependencies:

npm install react react-dom @tanstack/react-query @hiveio/dhive zustand

Styling

This package uses Tailwind CSS. Make sure to include Tailwind CSS in your project:

npm install tailwindcss

License

MIT

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.