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

kuinetic

v0.1.4

Published

Declarative web animation from HTML attributes. Native CSS where possible, JS only where necessary.

Downloads

473

Readme

kUInetic

Declarative web animation from HTML attributes. Native CSS where possible, JS only where necessary.

The common 80% of web motion — scroll reveals, hover/click micro-interactions, text effects, counters, SVG morphs — authored as a single data-kui attribute, executed natively by the browser wherever CSS can do it. Standalone, MIT, npm + CDN, framework-agnostic. No product or CMS coupling.

<h1 data-kui="fade-up">Hello.</h1>

255 named effects across scroll reveals, hover/interaction, text, numbers, layout, SVG, 3D, and gesture-driven motion. 100% branch/statement/function/line test coverage, over 800 tests.

Install

Pick whichever fits — no build step, no bundler config required for any of these.

Split bundle (recommended: the CSS keeps working even if the JS is slow, blocked, or fails to load) — download kuinetic.js + kuinetic.css, or use them straight from the CDN:

<link rel="stylesheet" href="./kuinetic.css">
<script src="./kuinetic.js"></script>
<script>
  kuinetic.kuinetic({ observe: true }).start()
</script>

One tag, self-hosted — CSS embedded, auto-started with observe: true:

<script src="./kuinetic.all.js"></script>

One tag, zero download — served from Cloudflare's CDN:

<!-- one-tag convenience -->
<script src="https://kuinetic.pages.dev/kuinetic.all.js"></script>

Or via npm, with a bundler:

npm install kuinetic
import { kuinetic } from 'kuinetic'
import 'kuinetic/css'

kuinetic({ observe: true }).start()

CDN reference

Every file is mirrored on jsDelivr and unpkg — both update automatically from every npm release, no separate action needed — and additionally self-hosted on Cloudflare at kuinetic.pages.dev:

| File | cdn.jsdelivr.net | unpkg.com | kuinetic.pages.dev | |---|---|---|---| | kuinetic.js | /npm/kuinetic † | /kuinetic † | /kuinetic.js | | kuinetic.css | /npm/kuinetic/dist/kuinetic.css | /kuinetic/dist/kuinetic.css | /kuinetic.css | | kuinetic.all.js | /npm/kuinetic/dist/kuinetic.all.js | /kuinetic/dist/kuinetic.all.js | /kuinetic.all.js |

† shorthand — resolves via the "jsdelivr"/"unpkg" fields in package.json; only kuinetic.js gets one, since a package can only designate a single default file that way.

kuinetic.js is the split bundle — side-effect-free on load, pair it with kuinetic.css, which keeps working even if the JS is slow, blocked, or fails to load. kuinetic.all.js is the one-tag drop-in — CSS embedded, auto-started with observe: true — trading that CSS-independence guarantee for one less step.

Your first animation

<div data-kui="fade-up 900ms 150ms ease-out">Hello.</div>

Three positional args, always duration → delay → easing. Compose effects that don't collide by comma-separating them — no wrapper element, no extra markup:

<h1 data-kui="slide-up 800ms, blur-in 400ms">

Not every effect is a scroll reveal — switch on: to drive it from hover, click, focus, or call it manually:

<button data-kui="shine-sweep">Hover me</button>

Docs

  • Getting Started — install, first animation, timing, composition, common mistakes.
  • Catalog — all 255 named effects, grouped by category, with renderer and channel metadata.
  • Architecture — the attribute grammar, the composition model, and why the library is built the way it is (docs/design.md in this repo).

Repository

Source, issues, and contributions: github.com/AINSEP/kuinetic

License

MIT