Just clone the repo and start hacking:
npm install react-open-uishell
$ git clone https://github.com/elle510/react-ui.git
$ cd react-ui
$ npm install # Install Node.js components listed in ./package.json
$ npm start # Compile and launch
`
$3
`shell
$ npm run webpack # or, npm run webpack -- release
`
By default, it builds in a debug mode. If you need to build in a release
mode, just add -- release flag. This will optimize the output bundle for
production deployment.
$3
`shell
$ npm start # or, npm start -- release
`
This will start a lightweight development server with "live reload" and
synchronized browsing across multiple devices and browsers.
$3
* General
- React Style Guide
- How to configure text editors and IDEs
* Questions
- Which module bundler should I use?
- Which Flux implementation should I use?
* Recipes
- How to Implement Routing and Navigation
- How to Integrate Disqus
$3
`
.
├── /dist/ # The folder for compiled output
├── /docs/ # Documentation files for the project
├── /libs/ # javascript library
├── /node_modules/ # 3rd-party libraries and utilities
├── /src/ # The source code of the application
│ ├── /components/ # React components
│ └── /app.js # Client-side startup script
├── package.json # The list of 3rd party libraries and utilities
└── webpack.config.js # webpack module builder config file
``