react-open-ui
v0.0.1
Published
Just clone the repo and start hacking:
Downloads
16
Readme
React UI
Getting Started
Just clone the repo and start hacking:
$ 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
How to Build
$ 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.
How to Run
$ npm start # or, `npm start -- release`
This will start a lightweight development server with "live reload" and synchronized browsing across multiple devices and browsers.
Documentation
- General
- Questions
- Recipes
Directory Layout
.
├── /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