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

axion-react-components

v0.0.4

Published

**Axion** — Artificial eXecution Intelligence and Orchestration Nexus A futuristic, neon-styled React component library built for **modern apps**.

Downloads

18

Readme

Axion React Components

Axion — Artificial eXecution Intelligence and Orchestration Nexus A futuristic, neon-styled React component library built for modern apps.


Features

  • Fully responsive and mobile-friendly
  • Neon/futuristic UI style
  • Clickable, reusable components
  • React 18 + 19 compatible
  • Easily importable via npm or GitHub

Installation

From npm

npm install axion-react-components

From github

npm install git+ssh://[email protected]/XSpiritWizardX/axion-react-components.git

Usage

Import Components Example

AXION GRID

    import { Grid} from 'axion-react-components';
// //// single axion grid

<Grid
  items={6}
  columns={3}
  cardBgColor="#22263bff"
  cardBorderColor="hsl(190, 90%, 60%)"
  cardHoverBgColor="#3a3535ff"
  cardTextColor="#ffffff"
  spotHSL="200 90% 60%" //spotlight color
  children={[ // this is the contents of the grid...
    <div>Custom Content 1</div>,
    <div>Custom Content 2</div>,
    <div>Custom Content 3</div>,
    <div>Custom Content 4</div>,
    <div>Custom Content 5</div>,
    <div>Custom Content 6</div>,
  ]}
/>


// //// nested axion grid with different spotlight colors

<Grid
  items={2}
  columns={2}
  cardBgColor="#22263bff"
  cardBorderColor="hsl(200, 90%, 60%)"
  cardHoverBgColor="#3a3535ff"
  cardTextColor="#fff"
  spotHSL="200 90% 60%" // cyan spotlight
  children={[
    <div>
      Nested 1
      <Grid
        items={3}
        columns={1}
        cardBgColor="#22263bff"
        cardBorderColor="hsl(300, 80%, 60%)"
        cardHoverBgColor="#3a2f32ff"
        cardTextColor="#fff"
        spotHSL="300 80% 60%" // purple spotlight
        children={[
          <div>n nested custom card 1</div>
          <div>n nested custom card 2</div>
          <div>n nested custom card 3</div>
        ]}
      />
    </div>,
    <div>Nested 2</div>
  ]}
/>

| Prop | Type | Default | Description | | ------------------ | ------------- | --------------- | ------------------------------------------------------------------------------------------- | | items | number | 9 | Number of cards to render. | | columns | number | 3 | Number of columns in the grid. | | cardBgColor | string | var(--panel) | Background color of each card. Accepts hex, rgb(a), or gradients. | | cardBorderColor | string | var(--accent) | Border color of each card. | | cardHoverBgColor | string | var(--panel) | Background color of a card when hovered. | | cardTextColor | string | var(--text) | Text color of card content. | | spotHSL | string | "190 90% 60%" | Spotlight HSL color affecting the border glow. Supports nested grids with different colors. | | children | ReactNode[] | undefined | Optional content for each card. If not provided, default Card X text is rendered. |

Axion Grid

Axion Grid 2

Axion grid 3

AXION BUTTON

still working on this

Development

  • Run dev server
npm run dev
  • build library
npm run build
  • Lint code
npm run lint

Contributing

  1. Fork the repository
  2. Create a feature branch
  3. Commit your changes
  4. Push & open a pull request

License

MIT License © Dustin Bovee