An open API service indexing awesome lists of open source software.

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.

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.