Install Reusable-UI

There are 2 major parts of Reusable-UI: Reusable-UI Core and Reusable-UI Components.

Reusable-UI Core

Reusable-UI Core is a building block (framework) for making any Reusable-UI Components. It also governs the interaction between components.

This core is intended for component developers. So, if you want to create a new kind of component which is compatible with Reusable-UI Components, this core is a great starting point.

To install the Reusable-UI Core, open the terminal window on your code editor and type:

# npm:
npm install @reusable-ui/core

# yarn:
yarn add @reusable-ui/core

# pnpm:
pnpm add @reusable-ui/core

Don't have an idea to create a Reusable-UI component? Don't worry, we made a tutorial creating a Reusable-UI component for you.

Reusable-UI Components

Reusable-UI Components contains a collection of our official common components.

This library (collection) is intended for (react) web developers. So, if you want to create a website without the hassle of creating the required components, our component library can help save your time.

Of course, our collection is limited. You may still need Reusable-UI Core to create a more specific component for your needs.

Install All Reusable-UI Components

To install the whole Reusable-UI Components, open the terminal window on your code editor and type:

# npm:
npm install @reusable-ui/components

# yarn:
yarn add @reusable-ui/components

# pnpm:
pnpm add @reusable-ui/components

Install Specific Reusable-UI Component

To install a specific Reusable-UI component, please browse Reusable-UI component library and choose the component you want.