Skip to content

Latest commit

 

History

History
29 lines (18 loc) · 777 Bytes

README.md

File metadata and controls

29 lines (18 loc) · 777 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 is 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.

Usage

Start Express (serving files in production)

npm start

Start WebpackDevServer (for development)

npm run start:dev

Build (also run in postinstall)

NODE_ENV=production npm run build

Make sure you are creating React bundle in production environment.

You aren't using React?

Check out pure EcmaScript 2016+ The Boring Part branch!