A yeoman generator for using react backed by koa
Check out the generated boilerplate at https://github.com/doug-wade/example-koa-react.
First, install Yeoman and generator-koa-react using npm (we assume you have pre-installed node.js).
npm install -g yo
npm install -g generator-koa-react
Then generate your new project:
yo koa-react
To start the server, just run npm start
and navigate to
localhost:3000 in your favorite browser.
To install the build toolchain
npm install -g gulp bunyan babel
browser <- the javascript source files for the browser
build <- transpiled server-side javascript
public <- files that are served by koa (compiled js, preprocessed css, compressed html)
server <- the javascript source files for the server
styles <- the styles, preprocessed
test <- tests and fixtures
view <- the html
Because we serve using browserify, the node api is available in the browser the same as on the server, so the distinction between browser and server is a little hazy, and you can free require between them and reasonably expect it to work.
To run the tests, run npm test
, or gulp build && gulp test
, or ava test/*.js
.
When debugging the tests, note that the tranpiler doesn't output debugger statements,
so you'll need to place them in the transpiled js in build/
, or place them in the
browser.
To develop against the stack, you may also want to familiarize yourself with some of the tools here. Here are some relevant links
Yeoman has a heart of gold. He's a person with feelings and opinions, but he's very easy to work with. If you think he's too opinionated, he can be easily convinced. Feel free to learn more about him.
MIT © Doug Wade