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.

Verwendung

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

Vorlagen

VorlageBeschreibung
shellShell-Orchestrator für Mikro-Frontends
react-appReact-Mikro-App
vue-appVue-Mikro-App
vanilla-appVanilla JS/TS-Mikro-App

Vorlage direkt angeben

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

Beispiele

Vordefinierte Beispielanwendungen können mit der Flag --example erstellt werden:

BeispielBeschreibung
with-reactReact-Mikro-Frontend-Beispiel
with-vueVue-Mikro-Frontend-Beispiel
with-svelteSvelte-Mikro-Frontend-Beispiel
with-angularAngular-Mikro-Frontend-Beispiel
with-ssr-reactServer-seitiges Rendering mit React
with-react-devtoolsReact-Integration mit DevTools
with-react-event-busEvent-Bus-Integrationsbeispiel
with-react-routerRouter-Integrationsbeispiel
with-react-sandboxSandbox/CSS-Isolationsbeispiel
with-module-federation-reactModule Federation mit React
with-vanillaVanilla JS-Mikro-Frontend-Beispiel
with-ssr-vanillaServer-seitiges Rendering mit Vanilla JS
with-multiple-frameworksIntegration mehrerer Frameworks

Ein Beispiel erstellen

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