Skip to content

create-kotodayori

create-kotodayori is a CLI that scaffolds a new Kotodayori project with your chosen framework and package manager.

Terminal window
npx create-kotodayori

Or with options:

Terminal window
npx create-kotodayori my-webhook-handler --fw=hono --pm=pnpm
OptionShortDescription
--framework--fwFramework: hono, express, lambda, eventbridge
--package-manager--pmPackage manager: pnpm, npm, yarn, bun
--skip-installSkip dependency installation after scaffolding
  • Hono — Full support; generates a Hono app with webhook route and example handlers
  • Express — Coming soon
  • Lambda — Coming soon
  • EventBridge — Coming soon

The Hono template includes:

  • Main app with webhook route
  • Example handlers for payment and subscription events
  • Logging middleware
  • TypeScript, tsup, and dev server setup
  • .env.example and README with template variables

You can then customize handlers and add more events as needed.