Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/corydolphin/measurer-react
Me messing around with react d3
https://github.com/corydolphin/measurer-react
Last synced: about 1 month ago
JSON representation
Me messing around with react d3
- Host: GitHub
- URL: https://github.com/corydolphin/measurer-react
- Owner: corydolphin
- License: mit
- Created: 2015-02-14T23:40:36.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-02-14T23:40:54.000Z (almost 10 years ago)
- Last Synced: 2023-03-23T11:43:53.555Z (almost 2 years ago)
- Language: CoffeeScript
- Size: 594 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# React JS Template App
This is a starter template for building your first [React](http://facebook.github.io/react/) application. Based on a [Gulp](http://gulpjs.com/) and [Webpack](http://webpack.github.io/) build system. If you look at the gulpfile, it implements some nifty features:
* Uses gulpfile.js to trampoline to gulpfile.coffee, for you coffee drinkers out there.
* `gulp dev` implements an http server and a live reload server.
* `gulp --production` shows how to use command line flags to switch to building minified versions.
* Uses the awesome Webpack project to combine all the javascript files into one.## Up and Running
First, clone the repo...`git clone git@github.com:johnthethird/react-starter-template.git`
Then install the npm and bower modules
```
$ npm install
$ bin/bower install
```start server
```
$ bin/gulp dev
```then go to http://localhost:4000/index.html
If you have the Chrome LiveReload extension installed, then your browser will automatically reload when any file in /src changes.