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

v3.3.2

Published

Create a new bestax-bulma project

Readme

create-bestax

npm version npm downloads License: MIT

The scaffolder for @allxsmith/bestax-bulma — spin up a Vite app pre-wired for the Bulma v1 React component library in one command. Picks your framework (JS or TypeScript), CSS flavor, and icon library, and can drop in the bestax AI skills so an agent like Claude Code knows the library from the first prompt.

Part of the bestax monorepo — see also @allxsmith/bestax-bulma for the components themselves.

Usage

Quick Start

# Using npm
npm create bestax@latest my-app

# Using npx
npx create-bestax@latest my-app

# Alternative naming
npm create bestax-bulma@latest my-app

Interactive Mode

Running without arguments will prompt you for all options:

npm create bestax@latest

You'll be asked to:

  1. Enter a project name
  2. Select a framework (Vite or Vite + TypeScript)
  3. Choose a Bulma CSS flavor (Complete or Minimal)
  4. Select an icon library (Font Awesome, Material Icons, etc.)
  5. Choose whether to install the bestax AI skills into .claude/skills/

Every prompt has a flag equivalent, so the whole flow is scriptable and CI-friendly — see the options below.

Command Line Options

npm create bestax@latest [project-directory] [options]

Arguments:

  • [project-directory] - Optional project directory name

Options:

  • -t, --template <template> - Template to use: vite or vite-ts
    Default: vite
  • -b, --bulma <flavor> - Bulma CSS flavor:
    • complete - Full Bulma CSS with all components and helpers
    • prefixed - Prefixed version for compatibility
    • no-helpers - Without helper classes
    • no-helpers-prefixed - Prefixed without helpers
    • no-dark-mode - Without dark mode support
      Default: complete
  • -i, --icon <library> - Icon library:
    • none - No icon library
    • fontawesome - Font Awesome
    • mdi - Material Design Icons
    • ionicons - Ionicons
    • material-icons - Material Icons
    • material-symbols - Material Symbols
      Default: none
  • --skills / --no-skills - Install (or skip) the bestax AI skills into .claude/skills/ (with a CLAUDE.md) so a Claude Code session picks them up automatically. When omitted you're prompted; with -y the default is to install.
  • -y, --yes - Skip prompts and use defaults or provided options.
    When used, the following defaults are selected unless overridden by flags:
    • Template: vite
    • Bulma flavor: complete
    • Icon library: none
    • AI skills: installed (pass --no-skills to opt out)

Example:

# Create a TypeScript project with Font Awesome icons
npm create bestax@latest my-app -t vite-ts -i fontawesome -b complete

# Use all defaults (skip prompts)
npm create bestax@latest my-app -y

Templates

Available templates:

  • vite - Vite + JavaScript
  • vite-ts - Vite + TypeScript

Each template includes:

  • Pre-configured bestax-bulma integration (React 19)
  • The latest @allxsmith/bestax-bulma, which ships Bulma v1 automatically
  • Icon library support (Font Awesome, Material Design, etc.)
  • Sample components demonstrating library usage
  • Development and build scripts

For AI Tools

Scaffolding for an AI agent? Pass --skills (or accept the prompt) to drop the bestax Agent Skills and a CLAUDE.md into the new project so Claude Code, Cursor, or Copilot build the bestax way from the start. The library also ships LLM-optimized docs:

Development

npm run build    # Build the CLI
npm run dev      # Watch mode
npm test         # Run tests
npm run lint     # Lint CLI source code
npm run typecheck # Type check CLI source code

Note on Templates: Template files in templates/ are excluded from linting. They should be manually validated by scaffolding a test project and running lint/build there before releasing.

Publishing

This package uses semantic-release with scope-based rules. Only commits with feat(create-bestax) or fix(create-bestax) will trigger releases.