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

@sregdorffej/kepler-ui

v0.2.4

Published

Sci-Fi inspired web component ui kit

Readme

Kepler UI

Sci-Fi inspired, web component-based UI kit

The Kepler UI Kit is a modern and flexible UI library built entirely with Web Components, making it an ideal choice for developers looking for a framework-agnostic, dependency-free solution for building user interfaces. Using a science-fiction inspired design system, It provides a consistent, customizable, and extendable set of UI components that can be used across a variety of projects, from static websites to complex web applications.

Installation

Getting started with the Kepler UI kit is incredibly straight-forward. All you have to do is include the JavaScript and CSS files in your project, and your components should work right out of the box.

Setup

Using a CDN

You only need to include the kepler-ui.js script at the end of your document body

<script src="https://cdn.keplerui.com/kepler-ui.js"></script>

You can also include the stylesheet at the beginning of your document, although this is optional. Kepler components are self styled, but this stylesheet will style everything else on your site to match.

<link type="stylesheet" src="https://cdn.keplerui.com/styles/main.css" />

Using a Package Manager

Download the package from npm

# npm
npm install @sregdorffej/kepler-ui

Then import the library into your JavaScript:

import "@sregdorffej/kepler-ui/kepler-ui.js";

Example

No configuration beyond adding the required JavaScript and optional CSS stylesheets to your project. Once they are included, you can add components to your html:

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8" />
        <link
            rel="stylesheet"
            href="https://cdn.keplerui.com/styles/main.css"
        />
        <meta name="viewport" content="width=device-width, initial-scale=1.0" />
        <title>Kepler App</title>
    </head>
    <body>
        <kp-theme theme-path="https://cdn.keplerui.com/styles/kepler-dark.css">
            <div id="app">
                <h1>Welcome!</h1>
                <kp-button>Click Me</kp-button>
            </div>
        </kp-theme>

        <script
            type="module"
            src="https://cdn.keplerui.com/kepler-ui.js"
        ></script>
    </body>
</html>

Playground

This repository also includes a playground for testing components in a dev environment. The source files are located in playground. To use it, first install the required dev dependencies:

# npm
npm install

# yarn
yarn install

Then run the server script

# npm
npm run dev

# yarn
yarn run dev

The site will automatically recompile the dist and pub directories when changes are made to either the src or playground directories.