An open API service indexing awesome lists of open source software.

https://github.com/code-warrior/gulp-tutorial

A slightly detailed tutorial on creating your first Gulp task using v4.0.0 of gulp
https://github.com/code-warrior/gulp-tutorial

gulp gulp4 task task-runner tutorial

Last synced: 1 day ago
JSON representation

A slightly detailed tutorial on creating your first Gulp task using v4.0.0 of gulp

Awesome Lists containing this project

README

          

# Getting Started
Gulp is a stream-based, JavaScript task runner that is derived from Node via NPM. It automates many of the tasks used in front end development, such as compressing files, linting syntax, and creating production versions of development files. Before we start, we need to install Node, which is packaged with NPM, and Gulp.

## Installation the Required Software
[01--installation-instructions.md](01--installation-instructions.md)

## Creating the `package.json` Manifest File
[02--creating-package-json-instructions.md](02--creating-package-json-instructions.md)

## Installing Gulp Modules/Plug-Ins
[03--installing-gulp-modules.md](03--installing-gulp-modules.md)

## Writing the Gulpfile
[04--writing-the-gulpfile.md](04--writing-the-gulpfile.md)

There are other useful Gulp recipes in this repo’s `gulp-recipes` folder. Study them; make them your own.