Overview

@noego/create generates a NoEgo project with the framework pieces already wired together. Use it to start a full-stack app, an API-only service, or a minimal Express server without hand-copying boilerplate.

Generated projects can include OpenAPI routes, server container setup, database configuration, seed folders, tests, frontend pages, and a local framework guide.

Usage

terminal
1
2
3
4
5
6
npx @noego/create my-app

cd my-app
cp .env.example .env
npm install
npm run dev

Templates

full-stack

Express backend, Svelte 5 frontend, OpenAPI wiring, database config, tests, and UI scaffolding.

api-only

Backend, repository, OpenAPI, middleware, database, and integration-test structure without frontend files.

minimal

Smallest Express server with IoC setup and basic project configuration.

Options

--template
Choose full-stack, api-only, or minimal.
--database
Choose sqlite or postgres for database-backed templates.
--jobs
Include the Captain background jobs example.
--yes
Accept defaults for non-interactive project creation.
NoEgo

© 2025 NoEgo. All rights reserved.