Docs
Getting Started
Installation

Installation

Installing PIXUI in Your Project

PIXUI is a modern, lightweight React component library designed to help developers build beautiful and responsive web applications quickly. This guide walks you through installing PIXUI in your project using npm, yarn or pnpm.

01

Install using npm

To install PIXUI using npm, open your terminal and run the following command:

Terminal

$
npm install pixui-react@latest
02

Install using yarn

If you prefer using yarn, execute the following command in your terminal:

Terminal

$
yarn add pixui-react@latest
03

Install using pnpm

For pnpm users, install PIXUI with the following command:

Terminal

$
pnpm add pixui-react@latest

Next Steps After Installation

Once installed, you can start importing and using PIXUI components in your React and Next.js application.

Example Usage

1import { Button } from "pixui-react";
2
3export default function MyComponent() {
4 return <Button>Click me</Button>;
5}

Why Choose PIXUI?

  • Built for modern React apps (supporting hooks and TypeScript)
  • Customizable and themeable components
  • Responsive by default
  • Actively maintained and open-source

For more detailed documentation, visit our Getting Started Guide.