gulp
gulp.task(name, fn) // registers the function with a name
gulp.run(task, task, task) // runs all tasks with maximum concurrency
gulp.watch(glob, fn) // runs a function when a file that matches the glob changes
gulp.src(glob) // takes a file system glob and returns a readable stream
gulp.dest(folder) // returns a writable stream; objects piped are saved to the file system