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-sasswave

v1.0.1

Published

Zero-config CLI to scaffold SassWave-ready React or Next.js apps.

Readme

🌊 @sasswave/create-sasswave-app

Zero-config CLI to scaffold SCSS-first React, Next.js, or Remix apps — ready to build in seconds.

npm version Node.js License


🚀 Usage

Create a new app

npm create @sasswave/sasswave-app

Or with npx

npx @sasswave/create-sasswave-app

Pass the app name directly

npx @sasswave/create-sasswave-app my-app

The CLI will walk you through framework selection, scaffold your project, install Sass, apply SassWave-branded layouts, and download required assets — all in one command.


📦 What Gets Scaffolded

When you run the CLI, you'll be prompted to choose a framework:

| Option | What runs under the hood | |--------|--------------------------| | Next.js | npx create-next-app@latest (App Router + TypeScript + ESLint) | | React | npm create vite@latest (react-ts template) | | Remix | npx create-remix@latest |

After scaffolding, the CLI automatically:

  1. Installs Sass as a dev dependency
  2. Removes boilerplate (Tailwind configs, default CSS files, placeholder SVGs)
  3. Writes SassWave-ready SCSS — global resets, variables, mixins, and module styles
  4. Generates branded componentslayout, page, App files with SassWave markup
  5. Downloads assets — favicon, wordmark, and Urbanist font from the cloud

🎨 What Your Project Looks Like

Next.js

my-app/
├── src/app/
│   ├── globals.scss          # Global styles, variables, mixins
│   ├── page.module.scss      # Page-level scoped styles
│   ├── layout.tsx            # SassWave-branded root layout
│   ├── page.tsx              # Landing page with hero section
│   └── favicon.ico           # SassWave favicon
├── public/
│   ├── wordmark.png          # SassWave logo
│   └── Urbanist-Regular.woff # Custom font
└── package.json

React (Vite)

my-app/
├── src/
│   ├── App.tsx               # SassWave landing page
│   ├── App.module.scss       # Scoped component styles
│   ├── main.tsx              # Entry point with global SCSS
│   └── styles.scss           # Global styles, variables, mixins
├── public/
│   ├── favicon.png           # SassWave favicon
│   ├── wordmark.png          # SassWave logo
│   └── Urbanist-Regular.woff # Custom font
├── index.html
└── package.json

⚙️ Commands Reference

| Command | Description | |---------|-------------| | npm create @sasswave/sasswave-app | Launch the CLI (npm create convention) | | npx @sasswave/create-sasswave-app | Launch the CLI (npx) | | npx @sasswave/create-sasswave-app my-app | Skip the app name prompt |

After scaffolding

cd my-app
npm run dev

🔧 Custom Assets

Assets are configured in assets-manifest.json. The CLI downloads them into your project during setup:

[
  {
    "url": "https://example.com/logo.png",
    "dest": "public/logo.png",
    "frameworks": ["next", "react", "remix"],
    "description": "Project logo"
  }
]

| Field | Description | |-------|-------------| | url | Remote URL to download from | | dest | Path inside the generated project | | frameworks | Which frameworks receive this asset (next, react, remix) |


📋 Requirements

  • Node.js >= 18.0.0
  • npm >= 7 (ships with Node 18+)

🛠️ Development

git clone https://github.com/shiv-am-saxena/Sasswave-CLI.git
cd Sasswave-CLI
npm install
npm run dev     # Run the CLI locally
npm test        # Run unit tests

📝 Changelog

See CHANGELOG.md for a list of changes in each release.

Releases are automated with semantic-release — version bumps, changelogs, and npm publishes happen on every push to main.


🔗 Links


License

UNLICENSED