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

jw-ui-kit

v1.0.6

Published

A modern, TypeScript-based UI component library built with Web Components. This library provides customizable, framework-agnostic components that work seamlessly in any web application.

Readme

JW UI Kit

A modern, TypeScript-based UI component library built with Web Components. This library provides customizable, framework-agnostic components that work seamlessly in any web application.

Features

  • TypeScript Support: Full TypeScript definitions included
  • Web Components: Framework-agnostic, works with React, Vue, Angular, or vanilla JavaScript
  • Customizable: Extensive styling options via CSS custom properties
  • Lightweight: No external dependencies, built with modern web standards
  • Accessible: Built with accessibility best practices

Components

JwButton

A customizable button component with hover effects and various styling options.

Attributes:

  • label - Button text content
  • bg-color - Background color
  • color - Text color
  • padding - Button padding
  • border-radius - Border radius
  • bg-hover-color - Hover background color

JwLoading

A spinning loader component for indicating loading states.

JwAnimatedBox (Burger Menu)

An animated hamburger menu component with smooth transitions.

Attributes:

  • size - Component size
  • color - Icon color
  • bg-color - Background color
  • hover-color - Hover background color
  • active-color - Active state color
  • duration - Animation duration
  • border-radius - Border radius
  • thickness - Line thickness

JwCalendar

A full-featured calendar component with event support and theming.

Methods:

  • setEvents(events: CalendarEvent[]) - Set calendar events

Installation

npm install jw-ui-kit

Usage

As Custom Elements (Recommended)

<!DOCTYPE html>
<html>
<head>
  <script type="module" src="node_modules/jw-ui-kit/dist/index.js"></script>
</head>
<body>
  <jw-button label="Click me!" bg-color="#007bff"></jw-button>
  <jw-loading></jw-loading>
  <jw-burger-menu></jw-burger-menu>
  <jw-calendar></jw-calendar>
</body>
</html>

In React

import React from 'react';
import 'jw-ui-kit';

function App() {
  return (
    <div>
      <jw-button label="Click me!" bg-color="#007bff"></jw-button>
      <jw-loading></jw-loading>
      <jw-burger-menu></jw-burger-menu>
      <jw-calendar></jw-calendar>
    </div>
  );
}

Programmatic Usage

import { JwButton, JwLoading, JwAnimatedBox, CustomCalendar } from 'jw-ui-kit';

// Register custom elements
customElements.define('jw-button', JwButton);
customElements.define('jw-loading', JwLoading);
customElements.define('jw-burger-menu', JwAnimatedBox);
customElements.define('jw-calendar', CustomCalendar);

// Create instances
const button = document.createElement('jw-button');
button.setAttribute('label', 'Dynamic Button');
document.body.appendChild(button);

TypeScript Support

This library is written in TypeScript and includes full type definitions. When using with TypeScript, you'll get:

  • IntelliSense and autocompletion
  • Type checking for component attributes
  • Proper typing for event handlers
  • Interface definitions for complex props (like calendar events)
import { CustomCalendar, CalendarEvent } from 'jw-ui-kit';

const calendar = document.querySelector('jw-calendar') as CustomCalendar;
const events: CalendarEvent[] = [
  { date: '2024-01-15', title: 'Meeting' },
  { date: '2024-01-20', title: 'Deadline' }
];
calendar.setEvents(events);

Development

# Install dependencies
npm install

# Start development server
npm run dev

# Type checking
npm run type-check

# Build for production
npm run build

Browser Support

  • Chrome 67+
  • Firefox 63+
  • Safari 12.1+
  • Edge 79+

License

MIT