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

no-frills-ui

v0.0.14

Published

React components that are made of styled native components. Mostly!

Readme

No Frills UI

npm version Minified Size Gzipped Size license Coverage Status

React components that are made of styled native components. Mostly! 😅

Storybook / Documentation: https://nfui.js.org/

Most modern UI component libraries come as complete ecosystems—multiple npm packages, custom design systems, proprietary APIs, and extensive documentation to learn. They rebuild everything from scratch using divs and spans, adding layers of abstraction for events, accessibility, and styling. While this gives them complete control, it also means shipping hundreds of kilobytes of JavaScript to recreate what browsers already provide.

No Frills UI takes a different approach: use what the browser already gives you. Instead of div soup with custom event handlers and accessibility bolt-ons, we build components from actual <button>, <input>, <select>, and <dialog> elements. This means you get native keyboard navigation, form behavior, and accessibility features out of the box—no extra code needed.

Why No Frills UI?

Smaller bundles, cleaner DOM: Our components are styled with Emotion, but the underlying structure is real HTML. No div soup, no bloated abstractions. You're looking at kilobytes, not hundreds of kilobytes.

Native APIs you already know: Instead of learning proprietary component APIs across multiple npm packages, you can use standard HTML props and browser features. A button is a button. An input is an input. If you know HTML, you already know 90% of the API.

Better semantics by default: Real HTML elements mean better SEO, better accessibility baseline, and a DOM that actually makes sense when you inspect it. Your screen reader users (and your future self debugging in DevTools) will thank you.

Simple theming: Everything's themed through CSS variables. No complex theme providers, no JavaScript runtime overhead. Just set your colors at the root and you're done.

Fast to get started: No boilerplate, no configuration, no learning curve. Import a component and use it. Perfect for POCs, hackathons, and small projects.

What's the Catch?

Let's be real about what this library is and isn't:

This is a learning project, not a production library. I built No Frills UI to experiment with native-first component design and to sharpen my React/TypeScript skills. It's grown into a proper component library with 20+ components, automated releases, and comprehensive Storybook documentation, but I work on this in my spare time for learning—not as a production-grade library.

When Should You Use This?

Perfect for:

  • Quick POCs and prototypes where you need UI fast
  • Hackathon projects and weekend hacks
  • Small personal projects and experiments
  • Learning how to build React component libraries
  • Bootstrapping an idea before investing in a full UI system

Not suitable for:

  • Production applications
  • Enterprise projects requiring support
  • Projects with strict accessibility requirements (right now)
  • Teams that need stable, battle-tested components
  • Anything your business depends on

If you need production-ready components, use established libraries with active maintenance and community support. But if you're hacking on a side project, need components for a quick demo, or want to explore a simpler approach to React UIs, give No Frills UI a try!

And hey, if you're also learning and want to contribute, pull requests are welcome. We're all learning here! 🚀

Older Versions

We archive the documentation generated for all versions on our GitHub Pages.