React Component Starter Kit
A project template for creating stand-alone React components. It is pre-configured with EditorConfig, Babel, Webpack, ESLint, CSSLint, CSSComb, JSCS, Flow and BrowserSync.
Getting Started
Just clone or fork the repo and start hacking:
$ git clone -o upstream https://github.com/kriasoft/react-component-starter.git MyComponent
$ cd MyComponent
$ npm install
$ npm start
How to Update
You can always fetch and merge the recent changes from this repo back into
your own project:
$ git checkout master
$ git fetch upstream
$ git merge upstream/master
$ npm install
How to Test
$ npm test