Creates a Module Federation application, API server, or library based on one of multiple different templates.
npx create-mf-app
These projects are not production complete. They are designed as lightweight projects that can be used to quickly prototype a new feature or library.
const { buildProject } = require('create-mf-app')
buildProject({
type: 'Application',
name: 'my-project',
port: '8080',
framework: 'react',
language: 'typescript',
css: 'Tailwind',
})