This is a single-spa example React microapp.
NOTE. This application have been configured to be run as child app of a single-spa application. So while this app can be deployed and run independently, we would need some frame single-spa which would load it. While technically we can achieve running this app as standalone app it's strongly not recommended by the author of the
single-spa
approach, see this GitHub Issue for details.
- node - v10.22.1
- npm - v6.14.6
- React 16.12
- Router via Reach Router
- CSS Modules with SCSS
- React Inline SVG
- We use Redux Store for storing page data if we need to edit it. Otherwise we can use local state.
- react-redux-toastr for success/error popups in the bottom left corner.
For available variables config which depend on the running environment (APPENV=dev
or APPENV=prod
), please refer to config/dev.js
and config/prod.js
.
For application constants which don't depend on the running environment use src/constants/index.js
.
Command | Description |
---|---|
npm start |
Run server which serves production ready build from dist folder |
npm run dev |
Run app in the development mode |
npm run dev-https |
Run app in the development mode using HTTPS protocol |
npm run build |
Build app for production and puts files to the dist folder |
npm run analyze |
Analyze dependencies sizes and opens report in the browser |
npm run lint |
Check code for lint errors |
npm run format |
Format code using prettier |
npm run test |
Run unit tests |
npm run watch-tests |
Watch for file changes and run unit tests on changes |
npm run coverage |
Generate test code coverage report |
npm i
- install dependenciesnpm build
- build code todist/
folder- Now you can host
dist/
folder using any static server. For example, you may run a simpleExpress
server by runningnpm start
.
Make sure you have Heroku CLI installed and you have a Heroku account. And then inside the project folder run the next commands:
- If there is not Git repository initiated yet, create a repo and commit all the files:
git init
git add .
git commit -m 'initial commit'
heroku apps:create
- create Heroku appgit push heroku master
- push changes to Heroku and trigger deploying- Now you have to configure frame app to use the URL provided by Heroku like
https://<APP-NAME>.herokuapp.com/topcoder-micro-frontends-teams.js
to load this micro-app.
TaaS Admin App is done using Single SPA micro-frontend architecture https://single-spa.js.org/. So to start it, we would also have to run Frame App and Navbar App. Here I would show the steps to run locally everything we need.
First of all, to authenticate locally we have to run a local authentication service.
- Clone this repository into
taas-admin-app
. - Inside the folder
taas-admin-app/auth-local
runnpm start
. - You would need npm 5+ for it. This would start a local sever on port 5000 which could be used for local Authentication.
Some config files are using domain local.topcoder-dev.com
. You can change it to localhost
in all the configs of each repo mentioned below. Or on your local machine, update file /etc/hosts
add the line 127.0.0.1 local.topcoder-dev.com
. This file has another path on Windows.
-
Run Frame App:
git clone https://github.com/topcoder-platform/micro-frontends-frame.git cd micro-frontends-frame # inside folder "micro-frontends-frame" run: nvm use # or make sure to use Node 10 npm i # to install dependencies # set environment variables: export APPMODE="development" export APPENV="local-multi" npm run local-server # this would start frame server on http://localhost:3000
open one more terminal window in the same folder and run:
# set environment variables: export APPMODE="development" export APPENV="local-multi" npm run local-client # this host frame client code on http://localhost:8080
-
Run Navbar micro-app:
git clone https://github.com/topcoder-platform/micro-frontends-navbar-app.git cd micro-frontends-navbar-app
Update in file
micro-frontends-navbar-app/config/dev.js
values forACCOUNTS_APP_CONNECTOR
andAUTH
tohttp://localhost:5000
so Navbar app which handles authentication uses our local Authentication service.# inside folder "micro-frontends-navbar-app" run: nvm use # or make sure to use Node 10 npm i # to install dependencies npm run dev # this host navbar app as http://localhost:3001/navbar/topcoder-micro-frontends-navbar-app.js
-
Run TaaS Admin micro-app:
# inside folder "taas-admin-app" run: nvm use # or make sure to use Node 10 npm i # to install dependencies npm run dev # this hosts TaaS Admin App as http://localhost:8502/taas-admin-app/topcoder-micro-frontends-taas-admin-app.js
-
Now we have to update the
micro-frontends-frame
app to show our local version of TaaS Admin App, instead of remote one. Update filemicro-frontends-frame/config/micro-frontends-config-local.json
:// replace line "@topcoder/micro-frontends-taas-admin-app": "https://platform.topcoder-dev.com/taas-admin-app/topcoder-micro-frontends-taas-admin-app.js", // with line: "@topcoder/micro-frontends-taas-admin-app": "http://localhost:8502/taas-admin-app/topcoder-micro-frontends-taas-admin-app.js",
- Now open in the browser http://localhost:8080/taas-admin.
- If you are not logged-in yet, you should be redirected to the login page.
- If you cannot see the application and redirect doesn't happen, make sure that file "http://local.topcoder-dev.com:8502/taas-admin-app/topcoder-micro-frontends-taas-admin-app.js" is loaded successfully in the Network tab.
Congratulations, you successfully run the project. If you had some issue, please, try to go through README of https://github.com/topcoder-platform/micro-frontends-frame and https://github.com/topcoder-platform/micro-frontends-navbar-app.