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

techgiant-lms-components

v1.0.0

Published

A comprehensive Learning Management System (LMS) component library built with React, TypeScript, and Tailwind CSS

Readme

TechGiant LMS Component Library

A comprehensive Learning Management System (LMS) component library built with React, TypeScript, and Tailwind CSS. This library provides reusable, customizable components for building modern LMS applications.

Features

  • 🎨 Modern Design: Beautiful, responsive components with GSAP animations
  • 🎯 TypeScript: Full TypeScript support with comprehensive type definitions
  • 🎪 Storybook: Interactive documentation and component playground
  • 🎨 Customizable: Easy to customize colors, themes, and styling
  • 📱 Responsive: Works perfectly on all devices
  • Performance: Optimized with React best practices

Quick Start

Installation

npm install @techgiant/lms-components
# or
yarn add @techgiant/lms-components

Basic Usage

import { DynamicCourseCard, CourseCardProps } from '@techgiant/lms-components';

const courseData: CourseCardProps = {
  title: "React Fundamentals",
  price: "$99.99",
  chapters: 12,
  orders: 150,
  certificates: 45,
  reviews: 89,
  addedToShelf: 234,
  video: "https://www.youtube.com/embed/dQw4w9WgXcQ",
  isFree: false,
  description: "Learn React from scratch",
  instructor: "John Doe",
  duration: "10 hours",
  level: "beginner",
  tags: ["React", "JavaScript", "Frontend"]
};

function App() {
  return (
    <div>
      <DynamicCourseCard 
        {...courseData}
        onCardClick={(course) => console.log('Course clicked:', course)}
      />
    </div>
  );
}

Components

DynamicCourseCard

A fully customizable course card component with YouTube video integration, statistics, and GSAP animations.

Props:

  • title: Course title
  • price: Course price (can be "Free" or "$XX.XX")
  • chapters: Number of chapters
  • orders: Number of orders
  • certificates: Number of certificates issued
  • reviews: Number of reviews
  • addedToShelf: Number of times added to shelf
  • video: YouTube embed URL
  • isFree: Boolean for free courses
  • description: Course description
  • instructor: Instructor name
  • duration: Course duration
  • level: Difficulty level ('beginner', 'intermediate', 'advanced')
  • tags: Array of course tags
  • onCardClick: Click handler callback
  • className: Custom CSS classes

LMSCourseTabs

Interactive section tabs with GSAP hover animations and metallic shine effects.

LMSSidebar

Fixed sidebar component for LMS navigation.

LMSDashboard

Complete dashboard layout with statistics and course sections.

Development

Running Storybook

npm run storybook
# or
yarn storybook

Visit http://localhost:6006 to view the interactive component documentation.

Building the Library

npm run build-storybook
# or
yarn build-storybook

Customization

Theme Colors

The components use Tailwind CSS classes and can be customized by:

  1. Overriding CSS variables in your project
  2. Using custom className props for styling
  3. Modifying the Tailwind config to match your brand colors

Example Customization

<DynamicCourseCard
  {...courseData}
  className="bg-blue-500 text-white border-2 border-blue-300"
/>

Contributing

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Add stories for new components
  5. Submit a pull request

License

MIT License - see LICENSE file for details.

Support

For support, please open an issue on GitHub or contact us at [email protected]