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

@murasaki-io/react98

v0.6.1

Published

A Windows 98-themed React UI component library published as @murasaki-io/react98

Readme

@murasaki-io/react98

Windows 98 UI components for React — pixel-perfect nostalgia meets modern tooling.

npm license


Bring the classic Windows 98 aesthetic to your React app — sunken borders, raised buttons, beveled panels, and all 19 original color schemes. Built with Tailwind CSS v4 design tokens so every detail is themeable.

→ Live demo & full docs


Install

# npm
npm install @murasaki-io/react98

# pnpm
pnpm add @murasaki-io/react98

# yarn
yarn add @murasaki-io/react98

Get started in 2 minutes

Without Tailwind CSS

Import the pre-built stylesheet and you're ready to go:

import { ThemeProvider, Button, TextBox } from '@murasaki-io/react98'
import '@murasaki-io/react98/globals.css'

export default function App() {
  return (
    <ThemeProvider>
      <Button>Click me</Button>
      <TextBox placeholder="Type here…" />
    </ThemeProvider>
  )
}

With Tailwind CSS v4

Point Tailwind at the package dist so component utilities get included, then import the theme:

/* app.css */
@source '../node_modules/@murasaki-io/react98/dist';
@import '@murasaki-io/react98/theme.css';

Then use components the same way — no separate CSS import needed in your JS files:

import { ThemeProvider, Button } from '@murasaki-io/react98'

export default function App() {
  return (
    <ThemeProvider>
      <Button>Hello, 1998</Button>
    </ThemeProvider>
  )
}

Adjust the @source path to be relative to your CSS file's location.

globals.css vs theme.css

| Entry | What it is | Use when | |---|---|---| | @murasaki-io/react98/globals.css | Pre-compiled bundle: theme tokens + the library's own component utilities, already expanded to plain CSS. | You are not using Tailwind — just import it and go. | | @murasaki-io/react98/theme.css | Tailwind CSS v4 source: design tokens, theme skins, and @import "tailwindcss". | You are using Tailwind v4 — pair it with @source so your build compiles the utilities. |

globals.css only carries the classes the components themselves use — it does not include general-purpose Tailwind utilities (e.g. w-screen, flex, gap-2). If you skip Tailwind, layout the rest of your app with your own CSS (or set up Tailwind v4 separately).


Documentation

Component reference, live examples, and guides live on the documentation site. It is the source of truth for API details and usage — this README only covers setup.

→ Documentation & live demo

  • Components — each component's props, examples, accessibility notes, and keyboard behavior. Components are composable and follow a consistent shadcn/ui-style API (e.g. SelectSelectTrigger / SelectContent / SelectItem; WindowWindowFrame / WindowTitleBar / WindowContent).
  • Guides — end-to-end walkthroughs, including building a full desktop shell with draggable, resizable windows and a taskbar.
  • HooksuseDraggable and useResizable for custom drag and resize interactions.
  • Theming — switch between the 19 built-in color schemes at runtime, or import a single theme's CSS for lean bundles.

Requirements

  • React 19+
  • Tailwind CSS v4 (optional — globals.css works without it)

Changelog

See the changelog for version history and breaking changes.


License

MIT