Skip to content
🚀
create-tuvix-app
create-tuvix-app
CLI scaffolding tool. Instantly bootstrap a Tuvix.js project with your choice of framework and tooling.

Utilizzo

bash
npx create-tuvix-app my-app

Or with a specific package manager:

bash
pnpm create tuvix-app my-app
yarn create tuvix-app my-app

Prompt Interattivi

The CLI guides you through project setup:

✔ Project name: › my-app
✔ Template: › shell (React + Vite)
✔ Add example micro app? › Yes
✔ Package manager: › pnpm
✔ Git init? › Yes

Scaffolding project...
Done! 🎉

  cd my-app
  pnpm install
  pnpm dev

Template

TemplateDescription
shell-reactShell app with React host
shell-vueShell app with Vue host
micro-reactReact micro app
micro-vueVue micro app
micro-svelteSvelte micro app
micro-angularAngular micro app
micro-vanillaVanilla JS/TS micro app
monorepoFull monorepo with shell + 2 micro apps

Specificare il template direttamente

bash
npx create-tuvix-app my-app --template monorepo
npx create-tuvix-app my-micro --template micro-react

Released under the MIT License.