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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@app-studio/web

v0.9.66

Published

![App Studio Web](https://img.shields.io/badge/App%20Studio-Web-blue) ![React](https://img.shields.io/badge/React-18.x-61DAFB) ![TypeScript](https://img.shields.io/badge/TypeScript-4.9.x-3178C6) ![License](https://img.shields.io/badge/License-MIT-green)

Downloads

4,493

Readme

App Studio Web Component Library

App Studio Web React TypeScript License

A comprehensive, accessible, and customizable React component library built with TypeScript and App Studio. This library provides a wide range of UI components designed to help you build beautiful and functional web applications quickly and efficiently.

🚀 What's Included

  • 40+ UI Components: Complete component library for modern web applications
  • ADK Agent Components: Specialized components for Agent Development Kit integration
  • Full TypeScript Support: Complete type definitions and IntelliSense
  • Production Ready: Battle-tested components used in real applications

📚 Documentation

✨ Features

  • 40+ UI Components: From basic elements to complex interactive components
  • ADK Agent Integration: Complete Agent Development Kit compatibility
  • Fully Typed: Built with TypeScript for better developer experience
  • Accessible: Follows WCAG guidelines for accessibility
  • Customizable: Easily theme and style components to match your brand
  • Responsive: Works across all device sizes
  • Form Integration: Seamless integration with Formik for form handling
  • Modern Design: Clean, consistent design following best practices

Installation

npm install @app-studio/web
# or
yarn add @app-studio/web

Quick Start

import React from 'react';
import { Button, Text } from '@app-studio/web';

function App() {
  return (
    <div>
      <Text>Hello, world!</Text>
      <Button onClick={() => alert('Clicked!')}>Click me</Button>
    </div>
  );
}

Component Categories

Layout Components

  • View
  • Center
  • Horizontal
  • Vertical
  • AspectRatio
  • Separator
  • Resizable

Form Components

  • Checkbox
  • Radio
  • Select
  • Switch
  • TextArea
  • TextField
  • OTPInput

Navigation Components

  • Accordion
  • Menubar
  • NavigationMenu
  • Pagination
  • Sidebar
  • Tabs

Feedback Components

  • Alert
  • Modal
  • Toast
  • Tooltip

Data Display Components

  • Avatar
  • Badge
  • Card
  • Table
  • Chart

Utility Components

  • Button
  • Gradient
  • Loader
  • Text

Interactive Components

  • Carousel
  • ContextMenu
  • DropdownMenu
  • HoverCard
  • Slider
  • Toggle
  • ToggleGroup

Design System

All components follow a consistent design system with:

  • Typography: Inter/Geist font, specific sizes/weights
  • Spacing: 4px grid system
  • Colors: Neutral palette with semantic colors
  • Rounded corners: Consistent border radius
  • Transitions: Subtle animations

Development

Prerequisites

  • Node.js (>= 10.x)
  • npm or yarn

Setup

  1. Clone the repository

    git clone https://github.com/your-org/app-studio-web.git
    cd app-studio-web
  2. Install dependencies

    npm install
    # or
    yarn
  3. Start the development server

    npm start
    # or
    yarn start

Available Scripts

  • npm start - Start the development server
  • npm run build - Build the library for production
  • npm test - Run tests
  • npm run storybook - Start Storybook for component development
  • npm run lint - Run ESLint
  • npm run lint:fix - Fix ESLint issues
  • npm run prettier - Run Prettier
  • npm run prettier:fix - Fix Prettier issues

Contributing

We welcome contributions! Please see our Contributing Guide for more details.

Creating New Components

Use our component creation script to scaffold new components:

npm run create-structure -- --name=YourComponentName

License

This project is licensed under the MIT License - see the LICENSE file for details.

Acknowledgements