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 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-nex

v1.1.6

Published

ReactNex is a next-generation UI component library for React developers. It offers a wide range of customizable and performant components to help you build beautiful and responsive user interfaces quickly and efficiently.

Downloads

6

Readme

React Nex

React-nex is a collection of UI components for React applications. Unlike other libraries where users have to download all components, React-nex allows developers to selectively install and use components as needed. Components are stored locally within the developer's project under src/component-rect-nex/.

✨ Selective Installation (Say Goodbye to Bloatware!)

Unlike other bloated libraries, React-nex empowers you to pick and choose the exact components you require. Simply leverage npx to install specific components directly into your project:

You can install React-nex components via npm using npx:

npx react-nex add component_name

Note:-Ensure that you add the component path to the Tailwind CSS configuration. Add the following line to the Tailwind config file to enable Tailwind to purge unused styles:

/** @type {import('tailwindcss').Config} */
module.exports = {
  content: [
    "./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
    "./src/components/**/*.{js,ts,jsx,tsx,mdx}",
    "./src/components-react-nex/**/*.{js,ts,jsx,tsx,mdx}",
    "./src/app/**/*.{js,ts,jsx,tsx,mdx}",
  ],
  plugins: [],
};

Usage

Once you've installed the desired component, you can import and use it in your React application as follows:

import { ComponentName } from './src/component-rect-nex/ComponentName';

function App() {
  return (
    <div>
      <ComponentName />
    </div>
  );
}

export default App;

Available Components

Here is a list of available components along with brief descriptions:

  • Button: A customizable button component for use in your React application.
  • Alert: A component for displaying alerts and notifications to users.
  • Avatar: A component for displaying user avatars or profile images.
  • AvatarGroup: A component for displaying a group of avatars in a single container.
  • Badge: A simple badge component for labeling content.
  • Checkbox: A checkbox component for selecting options.
  • Input OTP: A Input OTP component for getting otp values.

Contributing

We welcome contributions to React-nex. If you'd like to contribute, please follow these guidelines:

  • Fork the repository and clone it locally.
  • Create a new branch for your feature or bug fix.
  • Make your changes and ensure the code passes all tests.
  • Submit a pull request with a clear description of your changes.