Skip to content

Instantly share code, notes, and snippets.

@githubhy
githubhy / gulpfile.js
Created March 22, 2016 01:53
gulp+express+nodemon+browerSync -- Restart express server followed by liveload
'use strict';
var gulp = require('gulp');
var bs = require('browser-sync');
var nodemon = require('gulp-nodemon');
gulp.task('default', ['browser-sync'], function () {
});