New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

@openhands/ui

Package Overview
Dependencies
Maintainers
0
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@openhands/ui

OpenHands UI Components

latest
Source
npmnpm
Version
1.0.0-beta.9
Version published
Maintainers
0
Created
Source

@openhands/ui

A modern React component library built with TypeScript and Tailwind CSS.

Installation

Choose your preferred package manager:

# npm
npm install @openhands/ui

# yarn
yarn add @openhands/ui

# pnpm
pnpm add @openhands/ui

# bun
bun add @openhands/ui

Quick Start

import { Button, Typography } from "@openhands/ui";
import "@openhands/ui/styles";

function App() {
  return (
    <div>
      <Typography.H1>Hello World</Typography.H1>
      <Button variant="primary">Get Started</Button>
    </div>
  );
}

Components

ComponentDescription
ButtonInteractive button with multiple variants
CheckboxCheckbox input with label support
ChipDisplay tags or labels
DividerVisual separator
IconIcon wrapper component
InputText input field
InteractiveChipClickable chip component
RadioGroupRadio button group
RadioOptionIndividual radio option
ScrollableScrollable container
ToggleToggle switch
TooltipTooltip overlay
TypographyText components (H1-H6, Text, Code)

Development

Use your preferred package manager to install dependencies and run the development server. We recommend using Bun for a fast development experience.

Note: If you plan to make dependency changes and submit a PR, you must use Bun during development.

# Install dependencies
bun install

# Start Storybook
bun run dev

# Build package
bun run build

Testing Locally Without Publishing

To test the package in another project without publishing to npm:

# Build the package:
bun run build

# Create a local package:
# This generates a `.tgz` file in the current directory.
bun pm pack

# Install in your target project:
# Replace `path/to/openhands-ui-x.x.x.tgz` with the actual path to the generated `.tgz` file.
npm install path/to/openhands-ui-x.x.x.tgz

Publishing

This package is automatically published to npm when a version bump is merged to the main branch. See PUBLISHING.md for detailed information about the publishing process.

License

MIT

Keywords

openhands

FAQs

Package last updated on 28 Jul 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