Scaffold a new Vuloom application.
With pnpm:
pnpm create vuloom my-app
cd my-app
pnpm install
pnpm devWith npm:
npm create vuloom@latest my-app
cd my-app
npm install
npm run devWith yarn:
yarn create vuloom my-app
cd my-app
yarn install
yarn devUsage: create-vuloom <project-dir> [options]
Options:
--template <name> Scaffold template name. Supported: default, zero-config
--package-manager <name> Package manager to suggest/install with: pnpm, npm, yarn, bun
--install Install dependencies after scaffolding
--force Allow writing into a non-empty target directory
-h, --help Show this help message
default- Full-featured template with examples for pages, middleware, loaders, and server routes.
MIT