https://github.com/thetechie/react-flux-starter
React + Flux starter application in ES6 with complete build infrastructure using Bebelify, Browserify, Watchify, BrowserSync and SourceMaps
https://github.com/thetechie/react-flux-starter
Last synced: over 1 year ago
JSON representation
React + Flux starter application in ES6 with complete build infrastructure using Bebelify, Browserify, Watchify, BrowserSync and SourceMaps
- Host: GitHub
- URL: https://github.com/thetechie/react-flux-starter
- Owner: theTechie
- License: mit
- Created: 2015-07-19T14:23:19.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-07-19T15:14:45.000Z (almost 11 years ago)
- Last Synced: 2025-01-23T13:31:47.357Z (over 1 year ago)
- Language: JavaScript
- Homepage: http://thetechie.github.io/react-flux-starter/
- Size: 359 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# [React + Flux Starter](http://theTechie.github.io/react-flux-starter)
## Overview
React + Flux starter application with ES6 with complete build infrastructure using Bebelify, Browserify, Watchify, BrowserSync and SourceMaps
...
## Installation
After cloning the repository, install dependencies:
```
cd
npm install
```
Now you can run your local server:
```
npm start
```
#Description of [Gulp](https://github.com/gulpjs/gulp) Plugins
##[browserify](https://github.com/substack/node-browserify)
Browsers do not allow us to use the require method from Node.js. With browserify, we can implement dependency management on the browser. It also will bundle the code into one file in an efficient way to not repeat dependiencies that are used more than once.
##[browserSync](http://www.browsersync.io/)
When developing and testing the website, browserSync is a powerful tool that will rebuild and refresh the webpage so you can see the changes you make as you are working.
##[gulp-starter](https://github.com/greypants/gulp-starter)
A useful repository that explains how many of gulp's features work and contains an example project to get familiar with it. We use this example to construct our own project.