We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Took me a few minutes to find some documentation about this on a few other similar gulp modules;
If you want to use liverelad on a custom port, you need to pass an object to livereload.
Example Use:
var gulp = require('gulp'), livereload = require('gulp-livereload'), connect = require('gulp-connect'), DEST = "your-path-to-app", config = { root: [DEST], livereload: {enable: true, port: 1234}, host: 'localhost', port: 5000 }; gulp.task('webserver', function(){ connect.server(config); });