schickling / gulp-webserver

Streaming gulp plugin to run a local webserver with LiveReload
https://www.npmjs.org/package/gulp-webserver
MIT License
355 stars 84 forks source link

Improve Documentation #113

Open NoelBroda opened 8 years ago

NoelBroda commented 8 years ago

Please, guys, improve documentation. I want to do something easy like "serve the path xxx/xxx/xxx" and I can't found an example.

This is not working:

gulp.task('webserver', function() {
  gulp.src('app')
    .pipe(webserver({
      livereload: true,
      directoryListing: true,
      open: true,
     path: '/xxx/xxx/xxx'
    }));
});