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

feral-blob

v0.1.0

Published

A playful, pokeable SVG jelly-blob mascot for React — emotive faces, a physics-y idle wobble, and a fully theme-able palette via CSS vars. Part of FeralUI.

Downloads

558

Readme

feral-blob

A playful, pokeable SVG jelly-blob mascot for React. It has a handful of moods, a slow physics-y idle wobble, blinks and little hand fidgets, and a fully theme-able palette driven entirely by CSS custom properties — so the same component renders as a violet, mint, coral or gold jelly just by setting a few vars on a wrapper. Ships with BlobSpeech, a speech cloud that hugs its text.

Part of FeralUI.

Install

npm install feral-blob

react, react-dom, and motion are peer dependencies:

npm install react react-dom motion

Quick start

import { JellyBlobMascot } from 'feral-blob'
import 'feral-blob/blob.css'

export function App() {
  return <JellyBlobMascot mood="happy" />
}

blob.css carries the default palette and the speech-cloud styles. Import it once, anywhere in your app.

Moods

type JellyBlobMood = 'neutral' | 'happy' | 'sad' | 'angry' | 'hmm' | 'sideEye' | 'password'

Each mood reshapes the face and body — sad melts the silhouette, happy hops with a squash-and-stretch, sideEye gives a sly sideways glance, password shuts its eyes and looks away. Mood changes spring smoothly from wherever the blob currently is.

Theming

Every colour is a --jelly-* custom property. Set them on any ancestor to re-skin the blob — the outline, arms, cheeks, eyes, belly glow and ground shadow all re-tint from the same handful of vars:

<div style={{ '--jelly-body-mid': '#3cbe80', '--jelly-outline': '#2f9e6b' }}>
  <JellyBlobMascot mood="neutral" />
</div>

See styles/blob.css for the full list of variables and their defaults.

Reacting to a form

Drive mood, gaze, and nod from your own state and the blob will read along as you type, then look away when focus moves to a sensitive field:

<JellyBlobMascot
  mood={focus === 'password' ? 'sideEye' : 'neutral'}
  gaze={focus === 'email' ? { x: 18, y: -8 } : { x: 0, y: 0 }}
  nod={typing}
/>

gaze nudges where the blob looks (in viewBox units); intensity scales how far the body leans. nod adds a subtle talking wobble. onOverpoke fires when it's poked past its patience — wire it to a BlobSpeech and the blob can protest.

JellyBlobMascot props

| Prop | Type | Default | Description | | ------------ | ------------------------------------------ | ----------- | ----------------------------------------------------------------------- | | mood | JellyBlobMood | 'neutral' | Face and body expression. | | gaze | { x: number; y: number; intensity?: number } | { x: 0, y: 0 } | Nudges where it looks, in viewBox units. | | happyEyes | 'star' \| 'smile' | 'star' | Happy-mood eyes: sparkly stars or closed ^_^ arcs. | | mouth | 'open' \| 'wide' | — | Override the mouth open; flip per keystroke for a "talking" effect. | | nod | boolean | false | Subtle talking wobble. | | onOverpoke | () => void | — | Fired when poked past its patience; the blob also shakes. | | className | string | — | Class applied to the root <svg>. |

License

MIT © mortspace