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

suada-components

v1.13.3

Published

`suada-components` is a library of React components designed for rapid development and consistency across SUADA projects. This README outlines key information about the project setup, development practices, and how to contribute effectively.

Readme

suada-components

suada-components is a library of React components designed for rapid development and consistency across SUADA projects. This README outlines key information about the project setup, development practices, and how to contribute effectively.

Useful Links

  • Release Notes: Keep up with the latest updates and enhancements.
  • Version Tags: Track and utilize specific versions of the library.

IDE Recommendations

To ensure a consistent development environment, we recommend using Visual Studio Code. Enhance your coding experience by installing the following VS Code extensions:

  • Code Spell Checker: Helps catch spelling errors in your code.
  • ESLint: Integrates ESLint into VS Code, highlighting and fixing code quality and style issues.
  • EditorConfig: Helps maintain consistent coding styles for multiple developers working on the same project.
  • Prettier: Automatically formats your code to ensure it adheres to a consistent style.

Node Version Management

This project uses asdf for managing Node versions, ensuring that all contributors use the same version for consistency.

  1. Install asdf by following the instructions here.
  2. The required Node version is specified in the .tool-versions file.
  3. After installing asdf, install the Node version specified for this project with:
    asdf install nodejs <version>

Installing Dependencies

suada-components uses yarn for dependency management. Install yarn globally, then install the project dependencies:

Available Scripts

Here are some of the scripts available in this project:

| Script | Description | | --------------------- | ----------------------------------------------- | | npm run storybook | Runs the component library in development mode. | | npm run build | Builds the library for production. | | npm build-storybook | Builds the Storybook for production. |

Committing Guidelines

We use Commitlint to ensure our commit messages are consistent and follow conventional commit format. Here's an example of a well-formed commit message:

Commit Types

  • feat: Introduces a new feature.
  • fix: Fixes a bug.
  • chore: Other changes that don't modify source or test files.
  • style: Changes that do not affect the meaning of the code (white-space, formatting).
  • docs: Documentation only changes.
  • refactor: A code change that neither fixes a bug nor adds a feature.
  • perf: A code change that improves performance.
  • test: Adding missing tests or correcting existing tests.
  • build: Changes that affect the build system or external dependencies.
  • ci: Changes to our CI configuration files and scripts.
  • revert: Reverts a previous commit.
  • breaking: Causes a major version increment.

Adhering to these guidelines helps maintain a clean, manageable, and understandable commit history.