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

remochi

v0.1.3

Published

A React component library - Mochi style components

Readme

Remochi — A React UI Library Inspired by Enyo Mochi

A modern React component library that brings the charming, nostalgic Mochi UI style into your React projects. Remochi recreates classic Mochi components like buttons, radios, sliders, popups, and more — all rebuilt with React and styled-components for modern development workflows and accessibility.

Features

  • Authentic Mochi visual style: Rounded shapes, smooth animations, bright blues and warm yellows
  • Clean React components built with functional components and hooks
  • Fully accessible with keyboard support and ARIA attributes
  • Flexible customization of colors, sizes, and behaviors via props and styles
  • Components included:
    • Buttons (normal, warning, disabled)
    • Radio buttons and checkboxes with faithful checked states
    • Inputs with elegant focus styles and disabled variants
    • Sliders with animated bubble popups and smooth dragging
    • Progress bars with fluid fill animations and color options
    • Popups with dynamic nubbin styling and positioning
    • Spinners (light and dark variants, small and large sizes)

Installation

Install the package from npm:

npm install remochi or yarn add remochi

Usage

Import and use the components as you would with any React library:

import React, { useState } from "react";
import {
MochiButton,
MochiRadio,
MochiInput,
MochiSlider,
MochiProgressBar,
MochiSpinner,
MochiPopupPanel
} from "remochi";

function Example() {
const [value, setValue] = useState(50);
return (
<>
<MochiButton onClick={() => alert("Clicked!")}>Click me</MochiButton>
  <MochiRadio name="choice" value="alpha" checked onChange={() => {}}>Alpha</MochiRadio>

  <MochiInput placeholder="Enter text here" />

  <MochiSlider value={value} onChange={setValue} />

  <MochiProgressBar value={value} />

  <MochiSpinner active size="large" styleType="dark" />

  <MochiPopupPanel
    isOpen
    title="Example"
    actions={[
      { label: "Cancel", onClick: () => alert("Cancelled") },
      { label: "OK", onClick: () => alert("Confirmed") }
    ]}
  >
    Popup content here
  </MochiPopupPanel>
</>
);
}

Development

Clone the repository and start the development environment:

git clone https://github.com/yourusername/remochi.git cd remochi yarn install yarn start

Contributing

Contributions, bug reports, and feature requests are always welcome! Please open issues or pull requests on GitHub.

License

MIT License © 2025 Andrew Hunt

Acknowledgments

Thanks to the creators of the original Enyo Mochi Framework for inspiring this work.


Build delightful UIs the Mochi way, with React — get started with Remochi today!