Talking about JS dev-time tools.
A tool for building your front-end app!
Create a new bare-bones brunch project
brunch new my-app
Create project with brunch with babel compilation support
brunch new my-app -s es6
Create project with brunch with babel + react/jsx support
brunch new my-app -s react
Build
brunch b
Watch w/Server
brunch w -s
Watch w/Server on specific port
brunch w -s -P 12345