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

hyperiux

v1.0.73

Published

CLI for adding Hyperiux UI effects to your Next.js project. This package is a CLI installer only — it is not an importable JavaScript/TypeScript library.

Readme

Hyperiux Vault

npm version npm downloads CI License: MIT

A collection of high-quality animation effects and interactive components for Next.js — designed by Hyperiux.

32 free effects are open source and install instantly. 83 pro effects are available with a Pro subscription. The CLI copies source code directly into your project — you own what you install.


Quick Start

1. Initialize your project

npx hyperiux init

This creates a hyperiux.json config at your project root that tells the CLI where to install files and how your project is structured.

2. Add a free effect

npx hyperiux add phantom-image-trail

3. Use it

import PhantomImageTrail from "@/components/phantom-image-trail";

export default function Page() {
  const images = [
    { src: "https://pub-8abee449136941f5b0a1cd2c014534e9.r2.dev/vault-listing-images/assets-images/h-11.jpg", alt: "Gradient 1" },
    { src: "https://pub-8abee449136941f5b0a1cd2c014534e9.r2.dev/vault-listing-images/assets-images/h-12.jpg", alt: "Gradient 2" },
    { src: "https://pub-8abee449136941f5b0a1cd2c014534e9.r2.dev/vault-listing-images/assets-images/h-13.jpg", alt: "Gradient 3" },
    { src: "https://pub-8abee449136941f5b0a1cd2c014534e9.r2.dev/vault-listing-images/assets-images/h-14.jpg", alt: "Gradient 4" },
    { src: "https://pub-8abee449136941f5b0a1cd2c014534e9.r2.dev/vault-listing-images/assets-images/h-15.jpg", alt: "Gradient 5" },
    { src: "https://pub-8abee449136941f5b0a1cd2c014534e9.r2.dev/vault-listing-images/assets-images/h-01.jpg", alt: "Gradient 6" },
    { src: "https://pub-8abee449136941f5b0a1cd2c014534e9.r2.dev/vault-listing-images/assets-images/h-02.jpg", alt: "Gradient 7" },
  ];
  return (
    <div className="relative h-screen w-screen bg-[#f8fdfe]">
      <PhantomImageTrail
        images={images}
        enableRotation={true}
        idleSpawn={false}
        idleDelay={300}
        cursorOffsetX={-12}
        cursorOffsetY={-12}
        popOutDuration={0.8}
        fadeOutDuration={0.5}
        idlePopOutMultiplier={2.2}
        idleFadeMultiplier={1.8}
        imageMultiplier={3}
      />
    </div>
  );
}

Props

| Prop | Type | Default | Description | |---|---|---|---| | images | Array<{ src: string; alt?: string }> \| string[] | default image set | Image list to cycle through | | className | string | "" | Class applied to the outer wrapper | | imageClassName | string | "" | Extra classes applied to each image | | imageMultiplier | number | 3 | Multiplies the image set to extend the trail | | enableRotation | boolean | true | Enables randomized rotation on spawn and exit | | minStartRotation | number | -35 | Minimum starting rotation in degrees | | maxStartRotation | number | 35 | Maximum starting rotation in degrees | | minExitRotation | number | -15 | Minimum exit rotation in degrees | | maxExitRotation | number | 15 | Maximum exit rotation in degrees | | idleSpawn | boolean | true | Enables idle image spawns while the pointer rests | | idleDelay | number | 300 | Idle spawn delay in milliseconds | | idleDistanceThreshold | number | 2 | Pointer movement threshold for idle spawning | | triggerDistance | number | 100 | Pointer movement distance required to trigger a new image | | cursorOffsetX | number | -12 | Horizontal offset applied from the cursor | | cursorOffsetY | number | -12 | Vertical offset applied from the cursor | | popOutDuration | number | 1 | Duration of the main pop-out animation in seconds | | fadeOutDuration | number | 0.7 | Duration of the fade-out animation in seconds | | idlePopOutMultiplier | number | 1.8 | Multiplier applied to pop-out duration for idle spawns | | idleFadeMultiplier | number | 1.5 | Multiplier applied to fade duration for idle spawns | | startScale | number | 0.2 | Initial scale when an image appears | | endScale | number | 1 | Scale during the main pop-out animation | | exitScale | number | 0 | Scale at the end of the fade-out animation | | smoothMouse | boolean | true | Smooths pointer movement before spawning images | | lerpFactor | number | 0.1 | Smoothing factor used when smoothMouse is enabled | | disableOnMobile | boolean | false | Disables cursor-driven spawning on coarse pointers | | enableMobileTap | boolean | true | Allows taps to spawn images on mobile devices | | popEase | string \| function | Expo.easeOut | Easing used for the pop-out animation | | idlePopEase | string \| function | power1.out | Easing used for idle pop-out animations | | fadeEase | string \| function | power4.inOut | Easing used for the fade-out animation | | onImageShow | (payload) => void | — | Callback fired when an image is shown |


CLI Commands

| Command | Description | |---|---| | npx hyperiux init | Initialize config in your project | | npx hyperiux add <effect> | Add an effect to your project | | npx hyperiux list | List all available effects | | npx hyperiux login | Connect your Pro account | | npx hyperiux logout | Remove saved credentials | | npx hyperiux whoami | Show current login status |

Options for add

| Flag | Description | |---|---| | --overwrite | Overwrite existing files | | --yes | Skip confirmation prompts | | --dry-run | Preview what would be installed without writing files |


Free Effects

All 32 free effects install without an account. Browse and preview them at vault.hyperiux.com/effects.

# Backgrounds
npx hyperiux add spider-particles
npx hyperiux add dotted-grid

# Buttons
npx hyperiux add arrow-fill-button
npx hyperiux add link-button
npx hyperiux add scramble-link-button

# Carousels
npx hyperiux add zoom-slider

# Components
npx hyperiux add animated-faq
npx hyperiux add gooey-counter
npx hyperiux add hover-stack
npx hyperiux add interactive-list-preview

# Cursor
npx hyperiux add phantom-image-trail
npx hyperiux add pixelated-image-effect

# Loaders
npx hyperiux add numeric-tunnel
npx hyperiux add stack-loader

# Navigation
npx hyperiux add directional-menu
npx hyperiux add elevate-navbar
npx hyperiux add immersive-full-screen-navigation

# Scroll
npx hyperiux add circular-split-roll
npx hyperiux add horizontal-feature-reveal
npx hyperiux add infinite-perspective-slider
npx hyperiux add rotation-slider
npx hyperiux add split-canvas
npx hyperiux add sticky-content-wrapper
npx hyperiux add text-convergence

# Text
npx hyperiux add number-counter
npx hyperiux add overflow-stagger-text
npx hyperiux add rectangular-text-reveal

# Transitions
npx hyperiux add block-transition
npx hyperiux add chess-grid-transition

# WebGL
npx hyperiux add fractal-glass
npx hyperiux add interactive-blur-reveal
npx hyperiux add milky-way

Free effects by category

Backgroundsspider-particles · dotted-grid

Buttonsarrow-fill-button · link-button · scramble-link-button

Carouselszoom-slider

Componentsanimated-faq · gooey-counter · hover-stack · interactive-list-preview

Cursorphantom-image-trail · pixelated-image-effect

Loadersnumeric-tunnel · stack-loader

Navigationelevate-navbar · directional-menu · immersive-full-screen-navigation

Scrollcircular-split-roll · horizontal-feature-reveal · infinite-perspective-slider · rotation-slider · split-canvas · sticky-content-wrapper · text-convergence

Textnumber-counter · overflow-stagger-text · rectangular-text-reveal

Transitionsblock-transition · chess-grid-transition

WebGLfractal-glass · interactive-blur-reveal · milky-way


Pro Effects

83 pro effects require a Hyperiux Vault Pro subscription. This covers WebGL shaders, advanced Three.js scenes, GPU particle systems, complex GSAP rigs, and everything else in the full vault.

Getting started with Pro

Step 1 - Get a Pro subscription

Visit vault.hyperiux.com/pricing and subscribe. Monthly and yearly plans are available.

Step 2 - Generate a CLI token

Go to your dashboardCLI Token → copy the token.

Step 3 - Authenticate the CLI

npx hyperiux login

Paste your token when prompted. The CLI saves it locally so you only need to do this once per machine.

Step 4 - Install pro effects the same way as free

npx hyperiux add spotlight-text
npx hyperiux add square-translate
npx hyperiux add draggable-canvas

Verify your login

npx hyperiux whoami

CI / CD environments

If you install effects in a CI pipeline, set the token as an environment variable instead of running login:

HYPERIUX_TOKEN=your_token npx hyperiux add spotlight-text

Or add HYPERIUX_TOKEN to your CI secrets and the CLI will pick it up automatically.

Browse Pro effects

All 83 pro effects with live previews, code previews, and installation names are listed at vault.hyperiux.com/effects.


How It Works

The CLI copies source code into your project. There is no hyperiux import at runtime — the installed files are yours and live in your repo. This means:

  • No vendor lock-in
  • Customize any component freely after installing
  • Works with any Next.js App Router project

When you run npx hyperiux add <effect>, the CLI:

  1. Fetches the component source from the registry
  2. Installs it into src/components/effects/<effect-name>/
  3. Installs any peer dependencies (gsap, three, etc.) via your package manager
  4. Leaves the files in your codebase — no ongoing CLI dependency

Configuration

hyperiux.json is created by init at your project root:

{
  "$schema": "https://vault.hyperiux.com/schema.json",
  "tailwind": {
    "config": "tailwind.config.js",
    "css": "src/app/globals.css"
  },
  "aliases": {
    "components": "@/components",
    "effects": "@/components/effects",
    "hooks": "@/hooks",
    "lib": "@/lib"
  }
}

Adjust aliases to match your project's path aliases.


Requirements

  • Node.js 18+
  • Next.js 14+ (App Router)
  • Tailwind CSS v3 or v4

Most effects depend on GSAP. The CLI installs it automatically. Note that GSAP's premium plugins (SplitText, ScrollTrigger, etc.) require a GSAP license for commercial use — see gsap.com/licensing.


Environment Variables

| Variable | Purpose | |---|---| | HYPERIUX_TOKEN | Authenticate without running login — useful in CI | | HYPERIUX_APP_URL | Override the app URL for testing | | HYPERIUX_API_URL | Override the API URL independently | | HYPERIUX_REGISTRY_URL | Override the registry URL for local development | | HYPERIUX_DEBUG | Set to 1 for verbose request logs |


Architecture

This is a pnpm monorepo with Turborepo:

  • packages/clinpx hyperiux CLI tool, published to npm as hyperiux
  • registry/effects — Free effect source, organized by category

Pro effect source lives in a private repository and is served via a protected API. The registry index (public/r/index.json) lists all effects with metadata — pro file contents are not publicly accessible.


Contributing

Found a bug or want to contribute a free effect? Pull requests are welcome.

git clone https://github.com/Hyperiux-Immersion-Labs/hyperiux-components
cd hyperiux-components
pnpm install
pnpm dev

To add a new free effect: create a folder under registry/effects/<category>/<effect-name>/, add index.jsx with a named export, add registry.json, then run pnpm build:registry.


Community

💬 Questions or effect requests? Start a Discussion →

| Category | Purpose | |---|---| | Q&A | How-to questions about installing and using effects | | Effect Requests | Suggest new effects | | Show and Tell | Share sites you've built with Vault | | Ideas | General feedback and suggestions |


Connect

| | | |---|---| | 🌐 Agency | hyperiux.com | | 🎨 UI Library | vault.hyperiux.com | | 💻 GitHub | github.com/Hyperiux-Immersion-Labs |


License

Free effects are MIT licensed. Pro effects require an active subscription and are not redistributable.