Skip to content
This repository was archived by the owner on Mar 12, 2023. It is now read-only.

Files

Latest commit

Apr 8, 2021
defae2a · Apr 8, 2021

History

History

frontend

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Jul 17, 2019
Apr 8, 2021
Aug 17, 2019
Apr 2, 2021
Apr 2, 2021
Apr 2, 2021

React Frontend Deployment

Most of the files are generated by react, we only need to modify App.js

Run exsiting Frontend

Setup Server

npm install

Run Server

npm start

Install new-package

npm install --save new-package

Create Frontend from scratch

Prerequisite

Create React App

npx create-react-app frontend     # create basic react app
cd frontend
npm install --save reactstrap     # install essitial modules

References