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

@ngenux/ngage-ui-components

v1.0.0

Published

A comprehensive React UI component library built with Radix UI, Tailwind CSS, and TypeScript for modern web applications

Readme

@ngenux/ngage-ui-components

A comprehensive React UI component library for building modern, interactive learning and streaming applications.

Installation

npm install @ngenux/ngage-ui-components

Prerequisites

This package requires the following peer dependencies:

  • React >= 18.2.0
  • React DOM >= 18.2.0
  • Tailwind CSS (for styling)

Setup

1. Install the package

npm install @ngenux/ngage-ui-components

2. Configure Tailwind CSS

Add the package path to your tailwind.config.js:

module.exports = {
  content: [
    './src/**/*.{js,jsx,ts,tsx}',
    './node_modules/@ngenux/ngage-ui-components/dist/**/*.{js,mjs}',
  ],
  theme: {
    extend: {},
  },
  plugins: [],
}

3. Wrap your app with ThemeProvider

import { ThemeProvider } from '@ngenux/ngage-ui-components';

function App() {
  return (
    <ThemeProvider>
      {/* Your app content */}
    </ThemeProvider>
  );
}

Usage

Import and use components in your React application:

import {
  Button,
  Card,
  CardHeader,
  CardTitle,
  CardContent,
  Input,
  Label,
} from '@ngenux/ngage-ui-components';

function MyComponent() {
  return (
    <Card>
      <CardHeader>
        <CardTitle>Welcome</CardTitle>
      </CardHeader>
      <CardContent>
        <div className="space-y-4">
          <div>
            <Label htmlFor="name">Name</Label>
            <Input id="name" placeholder="Enter your name" />
          </div>
          <Button>Submit</Button>
        </div>
      </CardContent>
    </Card>
  );
}

Component Categories

UI Components

Basic building blocks for your application:

  • Button, Input, Label, Textarea
  • Card, Dialog, Sheet, Popover
  • Table, Tabs, Accordion
  • Avatar, Badge, Skeleton
  • And many more...

Atoms

Small, reusable components:

  • MetricCard, CollapsibleSection
  • DateTimePicker, StreamQualitySelector
  • ParticipantCard, ViewerAvatar

Molecules

Composite components combining multiple atoms:

  • ChatPanel, LiveQA, LiveNotes
  • ParticipantsList, AvatarGroup
  • DataTable, UserTable
  • CalendarView, EventForm

Organisms

Complex, feature-rich components:

  • LiveConference, LiveConferenceMobile
  • QADashboard, ScheduleLayout
  • VideoSettingsModal, TeacherDashboard

Templates

Full page layouts:

  • WaitingRoomTemplate

Layout Components

  • Header, Footer, RootLayoutClient

Theme Components

  • ThemeProvider, ThemeToggle

TypeScript Support

This package is written in TypeScript and includes type definitions. Import types as needed:

import type { StreamConfig, UserJourneyStep } from '@ngenux/ngage-ui-components';

Utilities

The package also exports utility functions:

import { cn } from '@ngenux/ngage-ui-components';

// Merge Tailwind classes safely
const className = cn('px-4 py-2', 'bg-blue-500', customClass);

Hooks

Custom React hooks are available:

import { useStream } from '@ngenux/ngage-ui-components';

Dependencies

This package includes the following major dependencies:

  • Radix UI primitives for accessible components
  • Framer Motion for animations
  • React Hook Form for form handling
  • AWS SDK for streaming functionality
  • Firebase for backend integration
  • And many more specialized libraries

See package.json for a complete list.

Styling

Components are styled using Tailwind CSS. Ensure you have:

  1. Tailwind CSS installed in your project
  2. The package path added to your Tailwind config
  3. Tailwind directives in your CSS:
@tailwind base;
@tailwind components;
@tailwind utilities;

License

MIT

Support

For issues, feature requests, or questions, please contact the Ngenux team.