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
FlagEffect
--shadcnInclude shadcn/ui.
--testing <jest|vitest>Test framework. Default jest.
--database <sqlite|postgres>Database. Default sqlite.
--nest-di-onlyNestJS in DI-only mode.
--deployment <none|standalone|custom-server|spa>Deployment config. Default none.
--bareSkip the todo example.