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
- Host: GitHub
- URL: https://github.com/code-warrior/gulp-tutorial
- Owner: code-warrior
- Created: 2019-02-17T19:25:18.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-02-26T18:31:17.000Z (almost 2 years ago)
- Last Synced: 2024-03-21T19:32:20.707Z (almost 2 years ago)
- Topics: gulp, gulp4, task, task-runner, tutorial
- Language: JavaScript
- Size: 17.1 MB
- Stars: 6
- Watchers: 3
- Forks: 21
- Open Issues: 58
-
Metadata Files:
- Readme: README.md
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.