Skip to content

Instantly share code, notes, and snippets.

@tilast
Created June 11, 2015 21:47
Show Gist options
  • Save tilast/07c3dcdd39191d9d5427 to your computer and use it in GitHub Desktop.
Save tilast/07c3dcdd39191d9d5427 to your computer and use it in GitHub Desktop.
var gulp = require('gulp');
var connect = require('gulp-connect');
gulp.task('serve', function () {
connect.server({
port: 3000
});
});
gulp.task('default', ['serve']);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment