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

flowbitz

v2.4.4

Published

Interactive components library for Webflow - React Showcase

Readme

FlowBitz

Version License CDN

Production-ready motion components for Webflow. Drop in a script, add a few attributes, and ship premium animations in minutes.


Table of Contents


Overview

  • 24 plug-and-play animations covering text, buttons, and immersive effects
  • Built for visual developers: configure everything with wb-* attributes inside Webflow
  • GSAP under the hood with graceful CSS fallbacks where possible
  • Dual build pipeline (UMD + ES modules) with smart lazy loading
  • Detailed docs, metadata, and debugging utilities baked in

What's New in v2.4

  • New components: shimmer-button, hover-zoom
  • ImageTrail improvements: Enhanced performance and better image preloading
  • ScrollTrigger improvements: Enhanced helper calculations and viewport unit handling
  • Performance wins: UMD bundle still 85 KB gzipped (−72% vs v1)

Component Catalog

Text

| Component | GSAP | Highlights | |-----------|------|------------| | split-text | ✅ | Character/word/line splits with stagger control | | gradient-text | ✅ | Animated gradients + optional border | | text-type | ✅ | Typewriter effect with cursor states | | blur-text | ✅ | Blur-to-clear entrances | | shiny-text | ❌ | CSS shimmer sweep | | count-up | ✅ | Number animations with separators | | decrypted-text | ✅ | Matrix-style decoding | | scramble-text | ✅ | Character scramble with hover retrigger | | variable-proximity | ✅ | Mouse-driven variable font control | | rotating-text | ✅ | Rotating phrases with pause/resume API | | text-pressure | ✅ | Variable font modulation (weight/width/italic) | | shuffle | ✅ | Sliding character shuffle | | tooltip-text | ❌ | Hover tooltips (CSS only) | | roll-text | ✅ | Vertical rolling text reveal |

Buttons

| Component | GSAP | Highlights | |-----------|------|------------| | gradient-button | ❌ | Animated gradient background | | ripple-button | ❌ | Material-style click ripple | | pulse-button | ❌ | Attention pulse | | shimmer-button | ❌ | Shimmer effect with customizable direction and color | | magnetic-button | ✅ | Cursor-follow magnetism |

Effects

| Component | GSAP | Highlights | |-----------|------|------------| | smart-animate | ✅ | Scroll-driven reveal engine | | 3d-card-hover | ❌ | CSS perspective tilt | | outline-gradient | ❌ | Animated gradient outlines | | image-trail | ✅ | Mouse-following image trails (8 variants) | | hover-zoom | ❌ | Zoom effect with parallax movement on hover |

Components marked ❌ are CSS-only and ship without GSAP for minimal bundles.


Quick Start

Option 1 — CDN (UMD)

<!-- Auto-initialised, GSAP included -->
<script src="https://cdn.jsdelivr.net/npm/flowbitz@latest/dist/flowbitz.umd.js"></script>

<h1 wb-component="split-text" wb-split-type="words">
  Create Amazing Websites with Powerful Animations
</h1>

Option 2 — npm (ES modules)

npm install flowbitz
import FlowBitz from 'flowbitz';

await FlowBitz.init({
  components: ['splitText', 'magneticButton'],
  debug: false,
});

Usage Examples

Magnetic Button

<button wb-component="magnetic-button" wb-strength="2" class="magnetic-cta">
  Hover me
</button>

Image Trail (variant 6)

<div wb-component="image-trail"
     wb-variant="6"
     wb-images='["portrait1.webp","portrait2.webp","portrait3.webp"]'
     style="height: 360px; cursor: pointer;">
</div>

Programmatic Control

const countUp = FlowBitz.getComponent('countUp');
const el = document.querySelector('[wb-component="count-up"]');

countUp.updateConfig(el, {
  to: 1500,
  duration: 2.4,
  separator: ',',
});

countUp.startCountUp(el);

Bundles & CDN Options

  • @latest — newest stable build
  • @2.4.4 — pinned release
  • @beta — beta channel
<!-- Stable UMD -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/flowbitz.umd.js"></script>

<!-- ES module -->
<script type="module">
  import FlowBitz from 'https://cdn.jsdelivr.net/npm/[email protected]/dist/flowbitz.es.js';
  await FlowBitz.init();
</script>

| Bundle | v1 | v2.4 | Improvement | |--------|----|------|-------------| | UMD (gzipped) | 300 KB | 85 KB | −72% | | ES entry | 300 KB | 15 KB + lazy chunks | −95% | | npm install | 828 KB | 319 KB | −61% |


Local Development

Prerequisites

  • Node.js 16+
  • npm 8+ (or pnpm/yarn equivalent)

Setup

git clone https://github.com/Slabpixel/FlowBitz.git
cd FlowBitz
npm install

Common Scripts

| Command | Purpose | |---------|---------| | npm run dev | Start Vite dev server (showcase app) | | npm run build:library | Build distributable library bundles | | npm run build:app | Build marketing/showcase site | | npm run build:all | Build library + app together | | npm run build:beta | Generate beta package artifacts | | npm run preview | Preview production output |

Project layout:

src/
├── app/         # React showcase
└── library/     # Core FlowBitz code
    ├── components/
    ├── core/
    ├── data/
    └── utils/

Deployments run on Vercel (npm run deploy:*) with immutable, versioned CDN paths like flowbitz.dev/v2.4.3/.


Contributing

We love community contributions—bug fixes, docs, and new components all welcome.

  1. Fork the repo and create a feature branch
  2. Implement your change and run npm run build:library
  3. Update documentation / metadata as needed
  4. Open a PR describing the change, usage, and testing steps

Adding a component? Remember to:

  • Implement it in src/library/components/
  • Register it inside src/library/core/WebflowBits.js
  • Document attributes in src/library/data/componentsMetadata.js
  • (Optional) add a demo to the showcase app

Support & Resources


License & Credits

Made with ❤️ for creative Webflow builders.