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

v0.13.3

Published

A CLI tool to create a new AbsoluteJS project

Readme

create-absolutejs

A CLI tool to scaffold new AbsoluteJS projects quickly and effortlessly.

Usage

Scaffold a new project called <project-name>:

bun create absolutejs my-app

Alternatively, using npm, Yarn, or pnpm:

npm create absolutejs my-app
yarn create absolutejs my-app
pnpm create absolutejs my-app

By default, the CLI will interactively prompt you for any missing configuration values. You can also supply flags to skip those prompts:

  • To skip all optional prompts and use none for every optional configuration:
    bun create absolutejs my-app --skip
  • To skip one optional prompt without providing a real value, pass none to that flag:
    bun create absolutejs my-app --auth none --engine none

Options

Usage: create-absolute [project-name] [options]

Arguments

  • project-name
    Name of the application to create. If omitted, you'll be prompted to enter one.

Options

  • --help, -h
    Show this help message and exit.

  • --debug, -d
    Display a summary of the project configuration after creation.

  • --angular
    Include an Angular frontend.

  • --angular-dir <directory>
    Specify the directory for and use the Angular frontend.

  • --assets <directory>
    Directory name for your static assets.

  • --auth <plugin|none>
    Pre-configured auth plugin (currently only absolute-auth) or none.

  • --biome
    Use Biome for code quality and formatting.

  • --build <direrctory>
    Output directory for build artifacts.

  • --db <engine|none>
    Database engine (postgresql | mysql | sqlite | mongodb | redis | singlestore | cockroachdb | mssql) or none.

  • --db-dir <directory>
    Directory name for your database files.

  • --db-host <provider|none>
    Database host provider (neon | planetscale | supabase | turso | vercel | upstash | atlas) or none.

  • --directory <default|custom>
    Directory-naming strategy: default or custom.

  • --eslint+prettier
    Use ESLint + Prettier for code quality and formatting.

  • --git
    Initialize a Git repository.

  • --html
    Include a plain HTML frontend.

  • --html-dir <directory>
    Specify the directory for and use the HTML frontend.

  • --html-scripts
    Enable HTML scripting with TypeScript.

  • --htmx
    Include an HTMX frontend.

  • --htmx-dir <directory>
    Specify the directory for and use the HTMX frontend.

  • --install
    Use the same package manager to install dependencies.

  • --lts
    Use LTS versions of required packages.

  • --orm <drizzle|prisma|none>
    ORM to configure: drizzle | prisma | none.

  • --plugin <plugin>
    Elysia plugin(s) to include (repeatable); none skips plugin setup.

  • --react
    Include a React frontend.

  • --react-dir <directory>
    Specify the directory for and use the React frontend.

  • --skip
    Skip non-required prompts; uses none for all optional configs.

  • --svelte
    Include a Svelte frontend.

  • --svelte-dir <directory>
    Specify the directory for and use the Svelte frontend.

  • --tailwind
    Include Tailwind CSS setup.

  • --tailwind-input <file>
    Path to your Tailwind CSS entry file.

  • --tailwind-output <file>
    Path for the generated Tailwind CSS bundle.

  • --vue
    Include a Vue frontend.

  • --vue-dir <directory>
    Specify the directory for and use the Vue frontend.

Directory Configuration

Choose between the default layout (pre-configured folder names) or custom, which prompts you to specify each directory name yourself:

bun create absolutejs my-app --directory custom

Debug & LTS Flags

  • --debug, -d
    After scaffolding, prints a detailed summary of your configuration (language, frontends, directories, etc.).
  • --lts
    Instructs the CLI to fetch and pin the latest published versions of your dependencies instead of its default pinned versions.

Getting Started

Once the scaffold completes, you’re ready to go:

cd my-app
# (If you skipped automated install)
bun install
# Then start the dev server
bun run dev

If you downloaded this repository to test or make changes you can use bun run test to start the created dev server without having to change directories back and forth.

Contributing

Contributions are welcome! Feel free to open issues or submit pull requests to improve the CLI.

License

Business Source License 1.1 (BSL-1.1) – see LICENSE for details.