First install the needed nodejs packages with
yarnor
npm install. Then this project can be run with a dev server locally with
yarn serveror
npm run server.
The server can be accessed via localhost:3000.
A production ready bundle.js can be made with
yarn buildor
npm run buildand can be found at build/bundle.js.
A production server can be run after generating bundle.js with
yarn startor
npm start. This server will serve everything in the build/ and html directories. So be careful what you put in those.