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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@frutiger.js/react

v1.13.0

Published

Modern React UI component library inspired by Frutiger Aero and Web 2.0 aesthetics.

Readme

@frutiger.js/react 💧✨

Modern React component library inspired by Frutiger Aero and Web 2.0 aesthetics.
Part of the Frutiger.js design system ecosystem.

npm version License: MIT


📖 Overview

@frutiger.js/react delivers accessible, strictly typed, and tree-shakeable React components inspired by Frutiger Aero, Windows Vista / 7 Glass, and early Web 2.0 optimistic design. Built with zero CSS-in-JS runtime overhead directly upon @frutiger.js/core.


✨ Features

  • 💎 Authentic Frutiger Aero Aesthetics: Translucent acrylic glass, glossy dome buttons, specular reflections, and nature gradients.
  • ⚡ Zero Runtime Overhead: Styled via native hardware-accelerated CSS Cascade Layers (@frutiger.js/core).
  • 🦾 TypeScript First: Strict typed props extending native HTML elements with full IDE autocomplete.
  • ♿ Accessible: WCAG 2.1 AA compliant, full keyboard navigation, visible focus rings, ARIA roles, and reduced-motion safety.
  • 📱 Fluid-First Responsive: Continuum scaling from 320px smartphones up to 4K ultrawide displays.
  • 📦 Modern ESM & Tree Shakeable: Ready for Next.js App Router, Vite, Remix, and Astro. Compatible with React 18 and React 19.

🚀 Installation

npm install @frutiger.js/core @frutiger.js/react

Or using pnpm / yarn:

pnpm add @frutiger.js/core @frutiger.js/react
# or
yarn add @frutiger.js/core @frutiger.js/react

⚡ Quick Start

Import @frutiger.js/core/styles.css once in your root file (e.g. main.tsx or layout.tsx):

import React from 'react';
import '@frutiger.js/core/styles.css';
import {
  Button,
  Card,
  CardHeader,
  CardTitle,
  CardContent,
  CardFooter,
  Badge,
  Input,
} from '@frutiger.js/react';

export function App() {
  return (
    <div className="fj-bg-aero" style={{ minHeight: '100vh', padding: '2rem' }}>
      <Card variant="glass" style={{ maxWidth: 480, margin: '0 auto' }}>
        <CardHeader>
          <CardTitle>Welcome to Frutiger.js</CardTitle>
          <Badge variant="nature">Online</Badge>
        </CardHeader>
        <CardContent>
          <p style={{ marginBottom: '1rem', color: 'var(--fj-color-text)' }}>
            Experience the optimistic, glossy aesthetic of the late 2000s Web 2.0.
          </p>
          <Input placeholder="Enter username..." />
        </CardContent>
        <CardFooter>
          <Button variant="aero">Explore System</Button>
        </CardFooter>
      </Card>
    </div>
  );
}

🧱 Included Components

  • Buttons & Actions: Button (7 glossy variants), Dropdown, DropdownItem
  • Surfaces & Containers: Card, WindowFrame (Vista/7 glass desktop window), ScrollArea (skeuomorphic scrollbar)
  • Archive & Media: GalleryGrid, GalleryItem, StatCard (metrics & trends)
  • Forms & Inputs: Input, Textarea, Select, Checkbox, Radio, Switch, Slider, Dropzone
  • Feedback & Loaders: Badge, Alert, Tooltip, Progress, Spinner, Skeleton (iridescent shimmer)
  • Navigation & Accordion: Navbar, NavLink, Sidebar, Breadcrumb, Modal, Tabs, Accordion, FaqList, FaqItem
  • Layout: Container, Stack, Grid, Avatar, Divider
  • Aero Vector Icons: IconSun, IconWater, IconLeaf, IconCloud, IconMusic, IconSparkles, etc.

📄 License

MIT © Biagio Scaglia