Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 days 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 (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-06-16T01:32:31.000Z (over 3 years ago)
- Last Synced: 2023-11-07T18:01:18.582Z (about 1 year ago)
- Topics: javascript, micro-frontend, react, vue
- Language: JavaScript
- Size: 510 KB
- Stars: 208
- Watchers: 3
- Forks: 57
- 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
```