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

astro-boom

v0.0.5

Published

πŸ’₯ Boom! Instantly create production-ready Astro sites with Tailwind, CMS, and Netlify

Readme

Astro Boom! πŸ’₯

Boom! Create production-ready static sites in seconds. A powerful CLI tool that scaffolds modern websites with Astro, Tailwind CSS, Sveltia CMS, and automatic deployment to Netlify.

npm version License: MIT

Features

πŸš€ Modern Stack

  • Astro - Lightning-fast static site generator
  • Tailwind CSS - Utility-first CSS framework
  • MDX - Markdown with JSX components
  • Sveltia CMS - Modern, lightweight Git-based CMS (replaces Decap CMS)
  • Pagefind - Static search that works offline
  • Netlify Forms - Serverless form handling
  • Plausible Analytics - Privacy-first analytics

πŸ“¦ Out of the Box

  • Customizable content collections (choose News/Blog/Articles, People/Team)
  • Pre-configured content types with empty state handling
  • Responsive navigation and footer
  • Contact and volunteer forms
  • Event management with date filtering
  • SEO-friendly structure
  • Accessibility-first approach
  • 90-100 Lighthouse score

🎨 Beautiful CLI

  • Interactive setup with Ink (React for CLIs)
  • Progress indicators and error handling
  • GitHub repository creation
  • Automatic Netlify deployment

Installation

npm install -g astro-boom

Or use directly with npx (recommended):

npx astro-boom

Usage

Interactive Mode (Default)

Run the CLI and follow the interactive prompts:

npx astro-boom

# Or after global install:
astro-boom

The CLI will guide you through:

  1. Project name - Your site's directory name
  2. Content section - Choose between News, Blog, or Articles
  3. Members section - Choose between People or Team
  4. GitHub repository - Optionally create a private GitHub repo
  5. Netlify deployment - Optionally deploy to Netlify
  6. Analytics - Choose between Plausible or none

Non-Interactive Mode

For CI/CD pipelines or quick scaffolding:

# Create project only
npx astro-boom --non-interactive my-project-name

# Create, install deps, and start dev server automatically
npx astro-boom --non-interactive --auto my-project-name

This creates a project with default settings (News/Team labels, no GitHub, no Netlify, no analytics).

Automatic Setup

After creating a project, Astro Boom will ask if you want to automatically:

  • Install dependencies
  • Start the development server

In interactive mode, you'll be prompted. In non-interactive mode, use the --auto flag.

Quick Start Example

# Create a new site
npx astro-boom

# Navigate to your project
cd your-project-name

# Install dependencies
npm install

# Start development server
npm run dev

# Build for production
npm run build

Project Structure

your-site/
β”œβ”€β”€ src/
β”‚   β”œβ”€β”€ content/          # Content collections
β”‚   β”‚   β”œβ”€β”€ pages/        # Static pages
β”‚   β”‚   β”œβ”€β”€ [news/blog/articles]/  # Your chosen content type
β”‚   β”‚   β”œβ”€β”€ events/       # Events
β”‚   β”‚   └── [people/team]/  # Your chosen members type
β”‚   β”œβ”€β”€ layouts/          # Page layouts
β”‚   β”œβ”€β”€ components/       # Reusable components
β”‚   └── pages/            # Astro pages
β”‚       β”œβ”€β”€ [news/blog/articles].astro  # Content list page
β”‚       β”œβ”€β”€ [news/blog/articles]/       # Content detail pages
β”‚       β”œβ”€β”€ events.astro  # Events list page
β”‚       β”œβ”€β”€ events/       # Event detail pages
β”‚       └── [people/team].astro  # Members page
β”œβ”€β”€ public/
β”‚   β”œβ”€β”€ admin/           # Sveltia CMS admin panel
β”‚   └── uploads/         # Media uploads
β”œβ”€β”€ astro.config.mjs     # Astro configuration
β”œβ”€β”€ tailwind.config.mjs  # Tailwind configuration
└── netlify.toml         # Netlify configuration

Content Management

Access the CMS at /admin after deploying to Netlify:

  1. Enable Identity in Netlify dashboard
  2. Set up Git Gateway
  3. Invite users or enable registration
  4. Start editing content through the web interface

Note: This project uses Sveltia CMS, a modern, fast alternative to Decap/Netlify CMS with:

  • 3x smaller bundle size (< 500KB vs 1.5MB)
  • Faster content loading with GraphQL
  • Better mobile support
  • No React dependency conflicts

Available Scripts

After creating your site, these scripts are available:

# Start development server with hot reload
npm run dev             # β†’ http://localhost:4321

# Build for production + generate search index
npm run build

# Preview production build
npm run preview

Building and Deployment

Build locally

npm run build

Deploy to Netlify

Option 1: Through CLI (if Netlify CLI is installed)

netlify deploy --dir=dist --prod

Option 2: Through Netlify Dashboard

  1. Connect your GitHub repository
  2. Set build command: npm run build
  3. Set publish directory: dist
  4. Deploy!

Customization

Collection Names

During setup, you can choose custom names for your content sections:

  • Content: News, Blog, or Articles
  • Members: People or Team

These choices affect URLs, navigation labels, and CMS configuration throughout your site.

Colors and Typography

Edit tailwind.config.mjs to customize colors and fonts:

theme: {
  extend: {
    colors: {
      primary: '#your-color',
      secondary: '#your-color',
    },
    fontFamily: {
      sans: ['YourFont', 'system-ui', 'sans-serif'],
    },
  },
}

Add New Content Types

  1. Define collection in /src/content/config.ts
  2. Add to CMS config in /public/admin/config.yml
  3. Create display components

Forms

Add new Netlify Forms by including the data attribute:

<form name="volunteer" method="POST" data-netlify="true">
  <!-- Your form fields -->
</form>

Environment Variables

For Plausible Analytics, update the domain in BaseLayout.astro:

<script defer data-domain="yourdomain.com" src="https://plausible.io/js/script.js"></script>

Requirements

  • Node.js 18+
  • npm or yarn
  • Git (for GitHub integration)
  • GitHub CLI (optional, for repo creation)
  • Netlify CLI (optional, for deployment)

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

MIT Β© Beez Fedia

Support

For issues and feature requests, please visit the GitHub repository.


πŸ’₯ Boom! Built with ❀️ by Beez Fedia