Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 577 Bytes

README.md

File metadata and controls

24 lines (16 loc) · 577 Bytes

React The Boring Part

Setup for React apps. It's not going to force you to use any specyfic toolset/framework. Be free and make your choice. React The Boring Part it just a setup which allows you to develop and deploy app without pain. It's not a bare minimum, although I tried to keep things simple.

Scripts

Start Express

npm start
NODE_ENV=production npm start # force production

Start Express & WebpackDevServer (needed only in development)

npm run dev

Build (needed only in production)

npm run build