create-newt-app
CLI reference for create-newt-app
pnpm dlx create-newt-app [name] [options]The [name] argument is optional. If omitted, the CLI will prompt for it.
--no-install
Skip pnpm install and pnpm format after scaffolding.
pnpm dlx create-newt-app my-app --no-install--no-git
Skip git init and the initial commit.
pnpm dlx create-newt-app my-app --no-git--ci
Non-interactive mode. The flags below apply in --ci mode; otherwise the CLI prompts for each.
pnpm dlx create-newt-app my-app --ci| Flag | Effect |
|---|---|
--shadcn | Include shadcn/ui. |
--testing <jest|vitest> | Test framework. Default jest. |
--database <sqlite|postgres> | Database. Default sqlite. |
--nest-di-only | NestJS in DI-only mode. |
--deployment <none|standalone|custom-server|spa> | Deployment config. Default none. |
--bare | Skip the todo example. |