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

create-susanoo-ui

v1.0.1

Published

A simple template creator for small projects

Readme

create-susanoo-ui 🛡️🌀

A minimal, lightning-fast interactive CLI tool to scaffold clean boilerplates for your front-end projects. Stop wasting time recreating folder structures, configuring SASS architectures, or writing standard reset styles from scratch.

npm version License: MIT Ko-fi


🚀 Features

  • Interactive Setup: Powered by inquirer for an intuitive terminal questionnaire interface.
  • Vanilla Starter Kit: Generates a pristine HTML5 structure complete with separated, modular global styling sheets and script entry points.
  • SASS 7-in-1 Architecture Template: Instantly sets up the widely acclaimed 7-in-1 Sass architecture pattern (Abstracts, Base, Components, Layout, Pages, Themes, Vendors) pre-configured with forwarders (@forward, @use) and a localized development script watcher.
  • Performance Focused: Extremely lightweight with asynchronous file copying operations utilizing fs-extra and colored terminal highlights using chalk.

🛠️ Installation & Usage

You can initialize and launch the generator seamlessly directly through your favorite package manager without global installations:

npx create-susanoo-ui
# or
npm x create-susanoo-ui

Manual Global Installation

If you prefer to have the command available permanently globally on your workspace:

npm install -g create-susanoo-ui

Then run the generator from any workspace folder:

create-susanoo-ui

📂 Available Project Templates

When running the CLI, you will be prompted to select between two baseline layout paradigms:

1. Vanilla HTML/CSS/JS

Ideal for quick prototyping, standard challenges, or lightweight scripts.

your-project/
├── css/
│   ├── global.css      # Core resets and systemic variables
│   └── styles.css      # Custom specific page styles
├── js/
│   └── main.js         # Modular ESM JavaScript entrypoint
└── index.html          # Standard modern semantic skeleton

2. SASS 7-in-1 Architecture

Designed for production-grade web layouts requiring rigorous design system constraints and CSS scale-out strategies.

your-project/
├── sass/
│   ├── abstracts/       # _variables.scss, _mixins.scss, _functions.scss
│   ├── base/            # _reset.scss, _globals.scss, _typography.scss
│   ├── components/      # _button.scss, _card.scss
│   ├── layout/          # _header.scss, _footer.scss, _grid.scss
│   ├── pages/           # _home.scss
│   ├── themes/          # _dark.scss
│   └── main.scss        # Aggregated pipeline forwarder
├── index.html
└── package.json         # Comes with live compile scripts ("npm run sass")

💖 Support the Project

If create-susanoo-ui helped speed up your setup workflow, consider supporting its maintenance and development of future feature templates! Your contribution helps keep the tool updated with the latest front-end standards and dependency security patches.

| Platform | Benefit | Link | | :--- | :--- | :--- | | Ko-fi | Buy me a coffee or support monthly | Support on Ko-fi | | GitHub | Leave a ⭐ to improve package discovery | GitHub Repository |

How to Sponsor on Ko-fi

Click the badge below or visit my direct page to make a flexible donation. Every single coffee makes a huge difference!

Ko-fi Support Button


📄 License

This project is open-source and dual-licensed under the terms of the MIT License. Feel free to fork, adapt, alter, and distribute it commercially or personally.