Skip to content

Instantly share code, notes, and snippets.

@m-coding
Created February 28, 2016 00:27
Show Gist options
  • Save m-coding/aa0304516698ea258b86 to your computer and use it in GitHub Desktop.
Save m-coding/aa0304516698ea258b86 to your computer and use it in GitHub Desktop.
  1. npm init this will create a package.json
  2. npm install gulp --save-dev installs gulp locally
  3. Add more modules npm install <MODULE> --save-dev
  4. Create a task:
gulp.task('task-name', function() {
  // Stuff here
});
  1. Run the task with gulp task-name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment