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

Template

TemplateDescrizione
shellOrchestratore shell per microfrontend
react-appApp micro React
vue-appApp micro Vue
vanilla-appApp micro Vanilla JS/TS

Specificare il template direttamente

bash
npx create-tuvix-app my-shell --template shell
npx create-tuvix-app my-react --template react-app
npx create-tuvix-app my-vue --template vue-app
npx create-tuvix-app my-vanilla --template vanilla-app

Esempi

Le applicazioni di esempio precostruite possono essere create utilizzando il flag --example:

EsempioDescrizione
with-reactEsempio di microfrontend React
with-vueEsempio di microfrontend Vue
with-svelteEsempio di microfrontend Svelte
with-angularEsempio di microfrontend Angular
with-ssr-reactRendering lato server con React
with-react-devtoolsIntegrazione React con DevTools
with-react-event-busEsempio di integrazione Event-Bus
with-react-routerEsempio di integrazione Router
with-react-sandboxEsempio di isolamento Sandbox/CSS
with-module-federation-reactModule Federation con React
with-vanillaEsempio di microfrontend Vanilla JS
with-ssr-vanillaRendering lato server con Vanilla JS
with-multiple-frameworksIntegrazione di più framework

Crea un esempio

bash
npx create-tuvix-app my-app --example with-react
npx create-tuvix-app my-app --example with-vue
npx create-tuvix-app my-app --example with-multiple-frameworks