create-react-app vs create-mf-app what is the difference

Viewed 54

I would like to create micro frontend in react. But what confuse me why thee is create-mf-app and how it is different from create-react-app. Create react app can do micro frontend too

1 Answers

npx create-react-app my-app creates a React app using the official start project. It offers a modern build setup with no configuration.

npx create-mf-app creates a Module Federation application, API server, or library based on one of multiple different templates. These projects are not production ready. They are designed as lightweight projects that can be used to quickly prototype a new feature or library.

Related