This is a template for using Express and React with Material UI installed in the same project. It is based on Create React App
git clone https://github.com/ElMehdiAbbes/node-react-mui.git
cd app-name
npm installThe template can be run in development, or in production. For development, use the following workflow.
node server/server.jsIn a different terminal tab...
npm startThe "Welcome to React" is a message that comes from the Express server.
In production, you want Express to serve up your app.
npm buildNow simply visit the Express app at 'http://localhost:3001' and you will see your app served from the 'build' folder. That's all there is to it!
