/react

Primary LanguageJavaScriptMIT LicenseMIT

Running The App

In development, the app runs via two separate processes...

Start the Express Server

node server/server.js

Start Create React App

In a different terminal tab...

npm start

Building For Production

In production, you want Express to serve up your app.

Build React App

npm build

Now start the Express server from the server folder

cd server
npm start

Your entire application is now running on port 3001.

Everything in the server folder is what is needed in production. Those are all of the build assets.