Tutorials 4
Yeoman AngularJS version 2 Generator
Yeoman can be installed globally using npm install yeoman –g command.The following screenshot shows the terminal with yeoman installation globally. Yeoman provides a generator named generator-angular2 to create a boiler plate for custom Gulp plugin development. The generator-angular2 can be installed globally using npm install generator-angular2 –g command.The following screenshot shows the terminal with generator-angular2 […]
PM2 Process Manager Commands Part1
In my previous post we have introduced and configured PM2 process manager for a NodeJS application in Windows platform. In this Demo,”We will learn more PM2 Process Manager commands and use it to our demo application”. The sample project we have used is PM2Demo and looks like following screenshot. PM2 Process Manager For NodeJS in […]
PM2 Process Manager For NodeJS in Windows
PM2 is a Process Manager for NodeJS and IOJS application in production environment. PM2 supports Express,Hapi,Geddy and Sail etc framework for NodeJS based web application. PM2 helps the application to run forever,reload application without downtime and common admin tasks In this Demo, “We will learn to install,configure the PM2 in Window”. PM2 module can be […]
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 […]