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

@emulsify/cli

v2.2.0

Published

Command line interface for Emulsify

Readme

Emulsify Design System npm

Emulsify CLI

Command line interface for creating Emulsify projects, installing component systems, installing system components, and generating local components.

Requirements

Emulsify CLI requires Node.js 24 or newer.

Installation

Install Emulsify CLI globally from npm:

npm install -g @emulsify/cli

Run the current command help at any time:

emulsify
emulsify --help

Quick Start

Create a Drupal starter project, install a system, and add components:

emulsify init "My Theme" ./web/themes/custom --platform drupal
cd ./web/themes/custom/my_theme
emulsify system install
emulsify component list
emulsify component install card
emulsify component create promo-card --directory molecules --format default

For non-interactive environments, pass the flags that normally prompt for input:

emulsify init "My Theme" ./web/themes/custom --platform drupal --yes
emulsify system install compound
emulsify component create promo-card --directory molecules --format default --yes

Documentation

Detailed documentation lives in docs.

| Topic | Use This When | | ---------------------------------------------------------------------- | ------------------------------------------------------------------------------- | | CLI Reference | Looking up commands, aliases, options, and examples. | | Project Initialization | Creating a new Emulsify project from a starter. | | Systems | Listing, installing, or authoring component systems. | | Components | Listing, installing, dry-running, or creating components. | | Project Configuration | Understanding project.emulsify.json, variants, and structure mappings. | | Component Template Overrides | Customizing files generated by emulsify component create. | | Hooks And Cache | Understanding starter hooks, system hooks, and local repository cache behavior. | | Development | Setting up this repository and running local checks. | | Release | Understanding CI, semantic-release, and npm publishing. |

Command Overview

| Command | Alias | Description | | ----------------------------------- | ----------------------------- | ----------------------------------------------------------------- | | emulsify init [name] [path] | | Initializes an Emulsify project from a starter. | | emulsify system list | emulsify system ls | Lists built-in systems available for installation. | | emulsify system install [name] | | Installs or scaffolds a system in the current Emulsify project. | | emulsify component list | emulsify component ls | Lists components available from the installed system and variant. | | emulsify component install [name] | emulsify component i [name] | Installs one component from the installed system and variant. | | emulsify component create [name] | emulsify component c [name] | Creates a local component in the current Emulsify project. |

Contributors

See Contributors.