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

astrobutton

v1.0.2

Published

Beautiful animated React buttons with star effects and dynamic features

Readme

🌟 AstroButton

Beautiful animated React buttons with star effects and dynamic features. Perfect for modern web applications that need eye-catching, interactive buttons.

npm version license downloads

✨ Features

  • 🌟 Animated star background effects
  • 🎨 Multiple variants and sizes
  • 💫 Ripple click effects
  • Loading states with spinner
  • 🎯 TypeScript support
  • 📱 Responsive design
  • 🔧 Highly customizable
  • Lightweight and performant

📦 Installation

```bash npm install astrobutton ```

🚀 Quick Start

```jsx import { AstroButton } from 'astrobutton';

function App() { return ( <AstroButton variant="primary" size="default" onClick={() => alert('Hello from space! 🚀')} > Click me! ); } ```

📖 API Reference

AstroButton Props

| Prop | Type | Default | Description | | ------------- | -------------------------------------------------- | ----------- | ------------------------- | | children | React.ReactNode | - | Button content | | variant | 'primary' \| 'secondary' \| 'outline' \| 'ghost' | 'primary' | Button style variant | | size | 'sm' \| 'default' \| 'lg' | 'default' | Button size | | loading | boolean | false | Show loading state | | loadingText | string | - | Text to show when loading | | startIcon | React.ReactNode | - | Icon before text | | endIcon | React.ReactNode | - | Icon after text | | fullWidth | boolean | false | Make button full width | | ripple | boolean | true | Enable ripple effect | | disabled | boolean | false | Disable button | | onClick | (e: MouseEvent) => void | - | Click handler |

Variants

  • primary: Gradient background with animated colors
  • secondary: Alternative gradient color scheme
  • outline: Transparent background with border
  • ghost: Subtle background with transparency

Sizes

  • sm: Small button (10rem × 2.5rem)
  • default: Standard button (13rem × 3rem)
  • lg: Large button (16rem × 3.5rem)

🎨 Examples

Basic Usage

jsx <AstroButton onClick={() => console.log('Clicked!')}> Basic Button

With Loading State

jsx <AstroButton loading={isLoading} loadingText="Processing..." onClick={handleSubmit}

Submit Form >

With Icons

jsx <AstroButton startIcon={} endIcon={} variant="secondary"

Get Started >

Different Variants

jsx

Different Sizes

jsx

🎭 Styling

The AstroButton component uses inline styles for the star animations and comes with built-in CSS animations. No additional CSS imports are required.

Custom Styling

You can pass additional className props for custom styling:

jsx <AstroButton className="my-custom-class" style={{ margin: '10px' }}

Custom Styled >

🌟 Animation Details

  • Star Background: Animated star field with rotating and moving effects
  • Gradient Animation: Smooth color transitions across the button surface
  • Ripple Effect: Click-triggered ripple animation from the click point
  • Loading Animation: Rotating spinner during loading states

🔧 TypeScript Support

AstroButton is built with TypeScript and includes full type definitions:

tsx import { AstroButton, AstroButtonProps } from 'astrobutton';

const MyButton: React.FC = (props) => { return <AstroButton {...props} />; };

📱 Responsive Design

AstroButton works great on all screen sizes and supports touch interactions on mobile devices.

🤝 Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

📄 License

MIT © Joy

🔗 Links


Made with ❤️ and ✨ for the React community