From 86307d25bbb0432321d7550d843bca23c5e98930 Mon Sep 17 00:00:00 2001 From: Christian Alfoni Date: Wed, 12 Nov 2014 08:49:47 +0100 Subject: [PATCH] Examples on workflows I have written a few articles on setting up a workflow with React JS, [Choosing the correct packaging tool for React JS](http://christianalfoni.github.io/javascript/2014/08/29/choosing-the-correct-packaging-tool-for-react-js.html#comment-1688477691), [React JS and a browserify workflow](http://christianalfoni.github.io/javascript/2014/08/15/react-js-workflow.html) and [React JS and a browserify workflow, PART 2[(http://christianalfoni.github.io/javascript/2014/10/30/react-js-workflow-part2.html). Based on the feedback developers are in dire need for a good workflow. I ran a suggestion on this as an issue, but there has not been an update to the website, so I thought I would try to go more "hands on" with it :-) Thanks for sharing React JS with the community! --- docs/docs/getting-started.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/docs/getting-started.md b/docs/docs/getting-started.md index f92ea04b142..34feda85fd2 100644 --- a/docs/docs/getting-started.md +++ b/docs/docs/getting-started.md @@ -106,7 +106,11 @@ Update your HTML file as below: ## Want CommonJS? -If you want to use React with [browserify](http://browserify.org/), [webpack](http://webpack.github.io/), or another CommonJS-compatible module system, just use the [`react` npm package](https://www.npmjs.org/package/react). In addition, the `jsx` build tool can be integrated into most packaging systems (not just CommonJS) quite easily. +The community is contributing with boilerplates that will help you get going with your React development workflow. Here are some examples: + +- [react-app-boilerplate](https://github.com/christianalfoni/react-app-boilerplate) @ christianalfoni. Browserify workflow with automatic JSX transformation, dependency handling for fast builds and jasmine test environment. + +In general you can use React with [browserify](http://browserify.org/), [webpack](http://webpack.github.io/), or another CommonJS-compatible module system. Use the [`react` npm package](https://www.npmjs.org/package/react). In addition, the `jsx` build tool can be integrated into most packaging systems (not just CommonJS). ## Next Steps