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

noodleseed-ui-kit

v0.0.2

Published

Noodle Seed UI Kit is a collection of reusable React components designed to make it easier to build elegant and consistent UIs. It is lightweight, customizable, and designed with scalability in mind, helping developers build fast and modern user interface

Readme

Noodle Seed UI Kit

Noodle Seed UI Kit is a collection of reusable React components designed to make it easier to build elegant and consistent UIs. It is lightweight, customizable, and designed with scalability in mind, helping developers build fast and modern user interfaces.

Features

  • Reusable Components: Collection of customizable, well-documented components.
  • TailwindCSS Integration: Uses TailwindCSS for rapid styling and consistent design.
  • TypeScript Support: Built with TypeScript to provide type safety and better developer experience.
  • Storybook Documentation: Preview and experiment with components interactively using Storybook.

Installation

To install the Noodle Seed UI Kit, use npm or yarn:

npm i noodleseed-ui-kit

or

yarn add noodleseed-ui-kit

Note: This package is available on GitHub Packages. Make sure you are authenticated with GitHub Packages and have the correct registry set in your .npmrc file.

Getting Started

Here is a quick example of how to use the Noodle Seed UI Kit in your project:

Import and Use a Component

import React from "react"
import { Button } from "@noodleseed/ui-kit"

function App() {
  return (
    <div>
      <Button onClick={() => alert("Button clicked!")}>Click Me</Button>
    </div>
  )
}

export default App

Components

The UI kit contains a number of reusable components, such as:

  • Button: Simple button with customizable label and click handler.
  • Card: Component for displaying content in a card layout.
  • Input: Customizable input field for text entry.
  • Modal: Pop-up dialog box for displaying information or forms.

Each component is documented with examples in Storybook.

TailwindCSS Integration

Noodle Seed UI Kit comes with TailwindCSS, providing you with utility classes to make customization easy. To integrate TailwindCSS styles, ensure your project has TailwindCSS set up or use the provided styles in @noodleseed/ui-kit by importing:

import "@noodleseed/ui-kit/dist/tailwind.css"

Storybook

To view interactive examples of each component, use Storybook:

  1. Install Storybook dependencies (if not already done):

    npx sb init
  2. Run Storybook:

    npm run storybook

Storybook allows you to see how the components look and behave, helping you experiment with various configurations.

Contributing

We welcome contributions! If you have an idea for a new component, a bug fix, or an improvement, feel free to fork the repository and create a pull request. Please follow the coding conventions and write tests for any new features.

Versioning

This project follows semantic versioning (MAJOR.MINOR.PATCH). For bug fixes, use patch; for new features, use minor; and for breaking changes, use major.

Contact

For questions or support, feel free to open an issue in the GitHub repository or reach out via email.