
// install nodejs
curl -fsSL https://deb.nodesource.com/setup_20.x -o /tmp/nodesource_setup.sh
sudo bash /tmp/nodesource_setup.sh
sudo apt install nodejs 

// create react app
npx create-react-app my-react-app
cd my-react-app

// put index.js and Main.js in src

// allow proxying to handle cors
// edit package.json :
// "proxy" : "http://localhost:8080/",

// start react server
npm start

// start rest server (tomcat + facade rest app)




