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-kura-app

v0.1.14

Published

Create a new Kura application.

Downloads

2,177

Readme

create-kura-app

Create a new Kura application with Bun.

bun create kura-app my-app
cd my-app
bun install
bun run dev

The application starts on http://localhost:3333.

What It Creates

The starter generates a TypeScript Kura app with:

  • Bun runtime configuration
  • HTTP server and router entrypoints
  • Environment, middleware, and route boot files
  • .kura.html view files for web and full-stack apps
  • Optional auth, database, cache, queue, mail, storage, i18n, and WebSocket files
  • A local kura import alias, so application code imports from "kura"

The generated app aliases the runtime dependency to kura, while the published framework package is @akuseru_w/kura.

import { Router } from "kura/http";

Interactive Setup

Run the command and choose the app shape from the prompts.

bun create kura-app my-app

You can choose:

| Prompt | Choices | | --- | --- | | Application type | API, Web, Full | | Project structure | Standard, Modular, Domain | | Features | Database, Auth, Cache, Queue, Mail, Storage, i18n, WebSockets | | Install dependencies | Yes or No |

Project Structures

Use the default standard structure for conventional apps.

bun create kura-app my-app -- --architecture=standard

Use modular when you want feature folders.

bun create kura-app my-app -- --architecture=modular

Use domain when you want Clean Architecture style boundaries.

bun create kura-app my-app -- --architecture=domain

The domain structure keeps domain entities framework-free and places adapters under infrastructure/.

app/domains/auth/
  domain/
    user.ts
    user_repository.ts
  application/
    register_user.ts
  infrastructure/
    persistence/
      user_record.ts
      Sqluser_repository.ts
  http/
    auth_controller.ts

Non-Interactive Usage

Skip prompts with --yes and pass the options you want.

bun create kura-app my-api -- --yes --preset=api
bun create kura-app my-web -- --yes --preset=web --auth=session
bun create kura-app my-api -- --yes --architecture=domain --database=sqlite

Available options:

--preset api|web|full
--architecture standard|modular|domain
--database none|sqlite|postgres|mysql
--auth none|session|access-token
--cache memory|file|redis
--queue none|memory|sqlite|redis
--module mail,storage,i18n,websockets
--install

Generated Commands

Inside the generated app:

bun kura
bun kura routes
bun kura doctor
bun kura env
bun kura config app.starter
bun run dev
bun run build
bun run typecheck

After installing the framework globally, the shorter kura command delegates to the generated app console.

bun install -g @akuseru_w/kura
kura serve
kura routes

Requirements

  • Bun 1.3 or newer
  • TypeScript 5 for type-checking generated apps

License

create-kura-app is open source software licensed under the MIT license.