Skip to content

Instantly share code, notes, and snippets.

@thedaviddias
Forked from narirou/gulpfile.js
Created July 17, 2014 02:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thedaviddias/fa4d14b7e0fc2483ddf1 to your computer and use it in GitHub Desktop.
Save thedaviddias/fa4d14b7e0fc2483ddf1 to your computer and use it in GitHub Desktop.
'use strict';
var gulp = require( 'gulp' ),
gutil = require( 'gulp-util' ),
fork = require( 'child_process' ).fork,
tinyLr = require( 'tiny-lr' ),
async = require( 'async' );
var dirs = {
app: [
'views/{,*/}*.jade',
'routes/{,*/}*.js',
'models/{,*/}*.js',
'libs/{,*/}*.js',
'app.js',
],
public: [
'public/scripts/{,*/}*.js',
'public/styles/{,*/}*.css',
'public/images/{,*/}*.{png,jpg,jpeg,gif,webp,svg}'
]
};
var livereload = {
instance: null,
port: 35729,
start: function( callback ) {
livereload.instance = tinyLr();
livereload.instance.listen( livereload.port, callback );
},
changed: function( event, callback ) {
var filepath = event.path;
livereload.instance.changed({
body: {
files: [ filepath ]
}
});
if( callback ) callback();
}
};
var app = {
instance: {},
path: 'app.js',
env: { NODE_ENV: 'development', port: 3000 },
start: function( callback ) {
process.execArgv.push( '--harmony' );
app.instance = fork( app.path, { silent: true, env: app.env } );
app.instance.stdout.pipe( process.stdout );
app.instance.stderr.pipe( process.stderr );
gutil.log( gutil.colors.cyan( 'Starting' ), 'express server ( PID:', app.instance.pid, ')' );
if( callback ) callback();
},
stop: function( callback ) {
if( app.instance.connected ) {
app.instance.on( 'exit', function() {
gutil.log( gutil.colors.red( 'Stopping' ), 'express server ( PID:', app.instance.pid, ')' );
if( callback ) callback();
});
return app.instance.kill( 'SIGINT' );
}
if( callback ) callback();
},
restart: function( event ) {
async.series([
app.stop,
app.start,
function( callback ) {
livereload.changed( event, callback );
}
]);
}
};
gulp.task( 'server', function( callback ) {
async.series([
app.start,
livereload.start
], callback );
});
gulp.task( 'watch', function() {
gulp.watch( dirs.app, app.restart );
gulp.watch( dirs.public, livereload.changed );
});
gulp.task( 'default', [ 'server', 'watch' ] );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment