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

serbitone-design-system-installer

v0.0.33

Published

๐Ÿš€ **Serbitone Design System Installer** is a CLI tool that helps you quickly set up the Serbitone Design System in your project. You can choose between the **Default Theme** (bundled CSS) or a **Custom Theme** (CSS excluded, fully customizable).

Readme

Serbitone Design System Installer

๐Ÿš€ Serbitone Design System Installer is a CLI tool that helps you quickly set up the Serbitone Design System in your project. You can choose between the Default Theme (bundled CSS) or a Custom Theme (CSS excluded, fully customizable).


Features

  • Install Default Theme with bundled CSS in one command.
  • Install Custom Theme and copy the root.css into your project for full customization.
  • Guided CLI to choose your preferred setup.
  • Step-by-step console instructions for using the design system in your app.

Installation

1. Add the installer to your project

npm install serbitone-design-system-installer --save-dev

The installer can also be run via npx without globally installing:

npx serbitone-design-system

Usage

Run the guided installer:

npx serbitone-design-system

You will be prompted to choose a theme mode:

? Choose theme mode:
โฏ default
  custom

2 Ways to Install the Design System

1๏ธโƒฃ Default Theme (Bundled CSS)

  • Automatically installs the prebuilt CSS.
  • Quick setup for projects that donโ€™t need theme customization.

Installation command:

npm install serbitone-design-system-default

Import in your main app file:

import "serbitone-design-system-default/dist/index.css";

CLI confirmation example:

โœ… Default theme installed with bundled CSS!
๐ŸŽจ Your Serbitone Design System is ready to use!
๐Ÿ“– Next steps:
1๏ธโƒฃ Import the bundled CSS in your main app file.
2๏ธโƒฃ Start using design system components.
3๏ธโƒฃ Customize theme later if needed.

2๏ธโƒฃ Custom Theme (CSS Excluded)

  • Installs the design system without CSS.
  • Allows you to customize the theme by editing root.css.

Installation command:

npm install serbitone-design-system-custom

Copy CSS into your project:

The installer will ask for the folder where you want to inject the theme:

? Input dir for design system css theme injection: /src/domains/Theme/

It will copy:

designSystemRoot.css

Import in your app file:

import "./src/domains/Theme/designSystemRoot.css";

CLI confirmation example:

โœ… Custom theme installed (CSS excluded)
๐ŸŽจ Custom root.css copied to /src/domains/Theme/designSystemRoot.css
๐Ÿ“– Next steps:
1๏ธโƒฃ Import root.css in your main app file.
2๏ธโƒฃ Start using components with your custom theme.

CLI Commands

npx serbitone-design-system Run the guided installer. npm install serbitone-design-system-installer Install the installer as a dev dependency. |


Docs & References


Notes

  • Default theme is faster to setup and includes CSS automatically.
  • Custom theme requires manual import of root.css but allows full design token customization.
  • Always run the guided installer in the root folder of your project to ensure correct paths.