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

dynamoblobs

v1.0.1

Published

Lightweight, dependency-free generative SVG blobs that wobble, morph, and drift — delivered as a drop-in custom element.

Downloads

236

Readme

Dynamoblobs

Dependency-free generative SVG blobs for HTML. <dynamo-blob> keeps your authored host in the document, inherits its fill, and can wobble, morph, or drift without a framework dependency.

Documentation and live examples

Install

npm install dynamoblobs
import 'dynamoblobs';
<dynamo-blob
  data-blob-points="12"
  data-blob-variance="18"
  style="display:block;width:120px;height:120px;fill:rebeccapurple"
></dynamo-blob>

The package root supplies matching ESM and CommonJS named exports. CDN and direct-script consumers can load the shipped dist/dynamoblobs.js or dist/dynamoblobs.min.js files; the UMD build registers the custom element and exposes globalThis.Dynamoblobs.

The canonical public package is dynamoblobs on npm. Releases are also mirrored to GitHub Packages as @mzebley/dynamoblobs; GitHub consumers need the usual @mzebley registry mapping and package authentication.

import { DynamoBlob, generateBlobPath, encodeBlobSeed } from 'dynamoblobs';
const { DynamoBlob: Blob } = require('dynamoblobs');

API at a glance

  • Shape: data-blob-points, data-blob-variance, data-blob-seed, and data-blob-observe.
  • Motion: declarative wobble, morph, and drift autoplay/speed/intensity attributes, with reflected .isWobbling, .isMorphing, .isDrifting, and .isAnimating state.
  • Controls: play, pause, playWobble, pauseWobble, playMorph, pauseMorph, playDrift, pauseDrift, generateNewBlob, and deflect; all chain.
  • Interaction: data-blob-drift-click="true" makes the host a named, keyboard-operable deflection button. Continuous morphing resumes seamlessly after generateNewBlob() reaches its new points.
  • Helpers: generateBlobPath, generateBlobPoints, nextMorphShape, parseBlobPath, interpolateBlob, resampleClosed, createSeededRandom, encodeBlobSeed, and decodeBlobSeed.
  • Events: dynamo-blob-complete fires on the element when a morph completes.

Importing the module is SSR-safe: browser registration happens only where customElements exists. Automatic motion respects prefers-reduced-motion; imperative play calls remain explicit opt-ins.

Development

npm test
npm run build:docs
npm run check:docs
npm run gate
npm run test:browser

The docs build generates the committed Zebkit CSS, accessibility input, and project runtime. Package publication contains only dist.

Release candidates, registry publishing, documentation enforcement, and the first-public-release bootstrap are documented in RELEASING.md.

License

MIT