You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

react-nex

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-nex

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.

latest
Source
npmnpm
Version
2.0.3
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created
Source

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.

Keywords

React

FAQs

Package last updated on 21 Apr 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts