https://github.com/ymichael/fiddle
A simple repository that integrates Browserify, React and Gulp.
https://github.com/ymichael/fiddle
Last synced: over 1 year ago
JSON representation
A simple repository that integrates Browserify, React and Gulp.
- Host: GitHub
- URL: https://github.com/ymichael/fiddle
- Owner: ymichael
- Created: 2015-05-31T10:13:25.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-05-31T10:21:53.000Z (about 11 years ago)
- Last Synced: 2025-01-11T04:41:23.694Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 117 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Fiddle
A simple repository that integrates [Browserify](http://browserify.org), [React](https://facebook.github.io/react/) and [Gulp](http://gulpjs.com/).
Easily fiddle with npm modules on the client-side.
## Usage
- `gulp dev` starts a static web server that servers `index.html`
- Changes to `main.js` are automatically detected and `build/all.js` updated.
- Changes to `stylesheets/main.less` are automatically detected and `build/all.css` updated.
## Stylesheets
The `gulp stylesheets` task compiles `less` stylesheets and concaternates them together.
## Javascript
The `gulp javascript` task parses `main.js` and bundles it using `Browserify` into `build/all.js`.
React's `JSX` is also transformed into javascript.