Skip to content

Instantly share code, notes, and snippets.

@yemaw
Created March 17, 2016 01:43
Show Gist options
  • Save yemaw/7fa392eb181b423ea0b6 to your computer and use it in GitHub Desktop.
Save yemaw/7fa392eb181b423ea0b6 to your computer and use it in GitHub Desktop.
gulp-webserver
var gulp = require('gulp');
var webserver = require('gulp-webserver');
gulp.task('webserver', function() {
gulp.src('./')
.pipe(webserver({
livereload: true,
directoryListing: true,
open: true
}));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment