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

v0.4.0

Published

Scaffold a new project with HELiX web components — TUI-powered CLI

Readme

create-helix

npm version CI Coverage License: MIT Node 20+ TypeScript

Scaffold a new project with HELiX enterprise web components. TUI-powered CLI with support for 9 framework targets and 4 Drupal presets.

Quick Start

npx create-helix
# or
npm create helix

Follow the interactive prompts to choose your framework, component bundles, and features.

Drupal Theme Scaffolding

npx create-helix --drupal

Or pass a preset directly:

npx create-helix --drupal --preset healthcare

Supported Frameworks

| Framework | Command Hint | Features | | ------------------------ | ---------------------------- | ------------------------------------------------------ | | React + Next.js 16 | recommended for new projects | SSR, App Router, React wrappers | | React + Vite | best DX for SPAs | Hot reload, React wrappers | | Remix | full-stack React, SSR | SSR, nested routes, React wrappers | | Vue + Nuxt 4 | Vue ecosystem, SSR built-in | SSR, native WC support, auto-imports | | Vue + Vite | minimal, fast | Hot reload, native WC support | | SvelteKit | best native WC support | SSR, native WC support, Runes | | Angular 18 | enterprise teams | Signals, standalone components, CUSTOM_ELEMENTS_SCHEMA | | Astro | docs sites, marketing | Islands architecture, zero JS by default | | Vanilla (HTML + CDN) | prototyping, Drupal, CMS | Zero config, CDN, no build step |

Drupal Presets

| Preset | Description | SDC Count | | ------------ | --------------------------------------------------- | --------- | | standard | Core Drupal SDCs for general-purpose themes | 7 | | blog | Standard + blog-specific content components | 12 | | healthcare | Blog + healthcare-specific components (HIPAA-aware) | 16 | | intranet | Standard + employee portal components | 11 |

Each preset generates a complete Drupal theme directory with:

  • Theme info and libraries YAML files
  • Single Directory Components (SDCs) with Twig templates
  • HELiX component CDN integration via helixui.libraries.yml
  • Drupal behaviors using the once() pattern
  • composer.json and package.json

See docs/drupal-presets.md for full details.

Component Bundles

When scaffolding a framework project, you can select which component bundles to include:

| Bundle | Components | Description | | ----------------------- | ---------- | ------------------------------------------------------------ | | All Components | 98 | The full HELiX library | | Core UI | 14 | button, card, badge, text, icon, avatar, divider, chip | | Form Components | 16 | text-input, select, checkbox, radio, switch, textarea, field | | Navigation | 12 | nav, sidebar, tabs, breadcrumb, pagination, menu | | Data Display | 10 | data-table, stat, progress, meter, counter, structured-list | | Feedback & Overlays | 8 | alert, toast, dialog, drawer, banner, skeleton | | Layout | 11 | grid, stack, split-panel, accordion, carousel |

Additional Features

  • TypeScript -- strict mode configuration
  • ESLint + Prettier -- code quality and formatting
  • HELiX Design Tokens -- CSS custom properties for theming
  • Dark Mode Support -- automatic dark mode via prefers-color-scheme
  • Example Pages -- forms, dashboard, and settings page examples

Requirements

  • Node.js >= 20.0.0

Development

git clone https://github.com/bookedsolidtech/create-helix-app.git
cd create-helix-app
npm install
npm run build

Scripts

| Script | Description | | ---------------------- | -------------------------------- | | npm run build | Compile TypeScript | | npm run dev | Watch mode | | npm start | Run the CLI | | npm run type-check | TypeScript strict check | | npm run lint | ESLint | | npm run format | Prettier auto-fix | | npm run format:check | Prettier check | | npm test | Run tests | | npm run verify | lint + format:check + type-check | | npm run preflight | verify + test |

Contributing

  1. Fork the repo and create a feature branch
  2. Make your changes
  3. Run npm run verify before pushing (enforced by pre-push hook)
  4. Run npm test to ensure all tests pass
  5. Open a pull request against dev

Secret Scanning

This repo uses gitleaks to prevent secrets from being committed. Install it locally to enable pre-commit scanning:

# macOS
brew install gitleaks

# Linux
GITLEAKS_VERSION="8.21.2"
curl -sSfL \
  "https://github.com/gitleaks/gitleaks/releases/download/v${GITLEAKS_VERSION}/gitleaks_${GITLEAKS_VERSION}_linux_x64.tar.gz" \
  | tar -xz -C ~/.local/bin gitleaks

# Windows (via scoop)
scoop install gitleaks

If gitleaks is not installed, the pre-commit hook will warn but will not block your commit. CI always runs the full scan. Configuration is in .gitleaks.toml.

License

MIT -- Copyright 2026 BookedSolid Tech