https://github.com/dabit3/micro-frontend-example
Building Micro Frontends with React, Vue, and Single-spa
https://github.com/dabit3/micro-frontend-example
javascript micro-frontend react vue
Last synced: 5 months ago
JSON representation
Building Micro Frontends with React, Vue, and Single-spa
- Host: GitHub
- URL: https://github.com/dabit3/micro-frontend-example
- Owner: dabit3
- Created: 2019-06-18T19:56:25.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2021-06-16T01:32:31.000Z (almost 5 years ago)
- Last Synced: 2025-10-09T09:58:59.526Z (6 months ago)
- Topics: javascript, micro-frontend, react, vue
- Language: JavaScript
- Size: 510 KB
- Stars: 217
- Watchers: 2
- Forks: 55
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Building Micro Frontends with React, Vue, and Single-spa
This code goes along with the blog post [Building Micro Frontends with React, Vue, and Single-spa](https://dev.to/dabit3/building-micro-frontends-with-react-vue-and-single-spa-52op) on [Dev.to](https://dev.to)
## Getting started
1. Clone the repo
```sh
git clone https://github.com/dabit3/micro-frontend-example.git
```
2. Install dependencies
```
yarn
# or
npm install
```
3. Start the app
```sh
npm start
```
4. Visit the following URLS:
```sh
# renders both apps
http://localhost:8080/
# renders only react
http://localhost:8080/react
# renders only vue
http://localhost:8080/vue
```