Nodejs 13
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 […]
AngularJS Directive Boilerplate Using Gulp
AngularJS We can build reusable directive using AngularJS. For creating a directive and publishing it to NPM require some repetitive task like source directory,distribution directory,build task etc..To resolve this cumbersome work we have to create a boilerplate and publish it to NPM and then reuse it whenever we have to create a new directive. In […]
Gulp Reactify With React.js Component
Reactify is a Browserify for React JSX. To know more about Browserify check my previous post about introduction to Browserify. Browserify enable the code shared between Client and server side. In this demo,”We will learn to create Gulp task to integrate Browserify-reactify to generate bundle that can be used by client side”. The demo requires […]
Streaming Build System Using Gulp.js
Gulp.js is a build system for application development. Gulp.js uses JavaScript programming language to create the application specific build system. In this demo,”We will learn to setup Gulp and create a simple build to generate a minified version of script file”. The Gulp can be installed using npm install gulp –save-dev command in a terminal.The […]