Live Reload Using Gulp
In my previous post we have learnt about JavaScript minification using Gulp-Uglify plugin. In this demo, “We will learn about Live Reload using Gulp For refreshing browser automatically for a change in CSS or JS”. LiveReload monitors changes in the file system and process the update and refresh the browser. The gulp-livereload is the gulp […]
Gulp Task For JavaScript Minification
In my previous post we have developed a task to convert SCSS files to CSS using gulp-sass plugin. In this Demo, “We will learn to create a Gulp task for minifying javascript file using gulp-uglify plugin”. The gulp-uglify plugin is based on UglifyJS2 library.UglifyJS is a JavaScript parser, minifier, compressor or beautifier toolkit. The gulp-uglify […]
Gulp Task For SCSS to CSS Conversion
In my previous post we have introduced to Gulp task. In this Demo, “We will learn about gulp-sass plugin and create a task that reads the SCSS file generate the CSS file and listens to changes to SCSS file and generates the corresponding CSS”. The gulp-sass plugin can be used to create a Gulp task […]
Getting Started With Gulp Build System
Gulp is new build system is capable of automate minification, file copy, watching file changes and rerun tasks. In this demo, “We will learn to getting started with Gulp system”. To install Gulp we need to have NPM installed in the machine.Considering NPM is installed in the machine Let’s continue with the example. We have […]