https://github.com/lucifier129/vdom-benchmark-react-lite
https://github.com/lucifier129/vdom-benchmark-react-lite
Last synced: 21 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/lucifier129/vdom-benchmark-react-lite
- Owner: Lucifier129
- Created: 2016-02-17T01:22:54.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-03-21T10:42:10.000Z (over 10 years ago)
- Last Synced: 2025-01-12T16:34:04.951Z (over 1 year ago)
- Language: JavaScript
- Size: 458 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# vdom-benchmark-react
[Virtual DOM Benchmark](https://github.com/localvoid/vdom-benchmark)
implementation for [React](http://facebook.github.io/react/) library.
## Development
### Install dependencies
```sh
$ npm install
```
### Development server
```sh
$ gulp serve
```
By default when you access `index.html` page it will wait for
benchmark test cases from the parent window. To use custom test cases,
use `data` attribute in query string, for example:
`http://localhost:3000/?data=http://localvoid.github.io/vdom-benchmark/generator.js`
will use test cases from the vdom benchmark.
### Release build
```sh
$ NODE_ENV=production gulp
```
### Deploy to github pages
```sh
$ NODE_ENV=production gulp deploy
```