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

v0.3.6

Published

Scaffold a new Aphex CMS project — invoked via `pnpm create aphex`

Readme

create-aphex

Scaffold a new Aphex CMS project from an official standalone template.

Usage

pnpm create aphex my-app
pnpm create aphex my-site --template website
# or
npm create aphex my-app
# or
npx create-aphex my-app

Pick a template with --template:

npm create aphex@latest my-site --template website

base (the default) is a minimal starter; website is a working marketing site with a page builder, blog, forms and SEO.

What it does

  1. Prompts for a project name (or takes the positional argument).
  2. Prompts for an official template when --template is omitted.
  3. Downloads the selected standalone template repository.
  4. Sets the package name and writes a default .env with local development defaults.

Official templates are pinned to the matching create-aphex-vX.Y.Z repository tag. A given CLI version therefore always scaffolds the same snapshot even after the template's main branch moves.

Templates

base

A minimal Aphex CMS application for defining your own content model and public site.

website

A content-focused website starter with:

  • Better Auth (email + password, email verification, password reset)
  • Organizations with parent/child hierarchy
  • SQLite by default with optional PostgreSQL and Turso
  • S3-compatible storage (@aphexcms/storage-s3) with local-filesystem fallback
  • Page builder, posts, categories, site navigation, and SEO

Choose non-interactively with --template base or --template website. Set APHEX_TEMPLATE to a complete giget source such as github:owner/repo#branch when testing a custom template repository.

After scaffolding

cd my-app
pnpm install
pnpm dev           # http://localhost:5173, or the next free port

Open /admin at the URL Vite prints — the first user to sign up becomes the super admin.