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

@paboddev05/arcui

v1.0.2

Published

![NPM Version](https://www.npmjs.com/package/@paboddev05/arcui)

Readme

✦ ArcUI

NPM Version

ArcUI is a premium, high-performance React UI library featuring an "Ash Black" aesthetic, cinematic spotlight effects, and advanced Glassmorphism. Built with React, Tailwind CSS, and Framer Motion.


📦 Installation

To install ArcUI in your React project, run:

npm install @paboddev05/arcui

⚠️ Important Setup
You must import the library's CSS file at the root of your application (e.g., main.jsx or App.jsx) for styles to load correctly.

import '@paboddev05/arcui/style.css';

🧩 Components
1. SpotlightNavbar
A responsive navbar with a magnetic spotlight hover effect and mobile drawer.

import { SpotlightNavbar, createNavItems } from '@paboddev05/arcui';

const navItems = createNavItems([
  { label: "Home", href: "#" },
  { label: "About", href: "#" }
]);

<SpotlightNavbar items={navItems} />

2. GlowingButton
A high-impact action button with a moving gradient beam border.

import { GlowingButton } from '@paboddev05/arcui';

<GlowingButton glowColor="#a855f7" onClick={() => alert('Clicked')}>
  Get Started
</GlowingButton>

3. GlassForm (Card & Input)
Beautiful, transparent form components with blur effects.

import { GlassCard, GlassInput } from '@paboddev05/arcui';

<GlassCard>
  <GlassInput label="Email" placeholder="[email protected]" />
</GlassCard>

4. CountdownTimer
A jitter-free, tabular-num countdown timer.

import { CountdownTimer } from '@paboddev05/arcui';

<CountdownTimer targetDate={new Date('2026-12-31')} size="lg" />

5. SpotlightFooter
A footer with a top ambient spotlight and grid layout.

import { SpotlightFooter } from '@paboddev05/arcui';

<SpotlightFooter logo="ArcUI" copyright="© 2026" />

6. LoadingScreen
A cinematic intro animation with text reveal.

import { LoadingScreen } from '@paboddev05/arcui';

// Use inside your main App component
{loading && <LoadingScreen onLoadingComplete={() => setLoading(false)} />}

🎨 Customization
All components accept a className prop, allowing you to override styles using Tailwind CSS.

<Button className="bg-red-500 hover:bg-red-600">
  Custom Button
</Button>

📄 License
MIT © PabodDev