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

Latest commit

 

History

History

frontend

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

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