Tutorials 4
Gulp JSCS JavaScript Style Linter Task
JSCS is a Linter for JavaScript code style. JSCS contains 150 validation rules for javascript style linting. These 150 rules follows popular style guides from Jquery,Airbnb and Google etc. JSCS also provides presets like Jquery,Airbnb and Google. Gulp provides gulp-jscs module for creating task to run JSCS to lint the javascript code. In this demo,”We […]
Debugging Code Using Gulp Source Maps
The gulp-sourcemaps module can be used for debugging compressed code. For Production release we compressed/minified the javascript files.This minification increases the performance of the application due to reduced file size.But it makes the debugging process difficult for developer and it is very hard to find the exact line number or word number from where error […]
VueJS Library For Developing JavaScript Component
Vue.js library is a framework for developing Web interfaces. Vue.js library is developed on Model and View relation and binded by 2 way data binding. In this Demo,”We will learn to install Vue.js library and develop a custom component”. Vue.js library can be installed using npm install vue –save command.The following screenshot shows the terminal […]
Introducing Meteor JavaScript Application Platform
Meteor is an JavaScript application platform for developing application. Meteor provides reactive rendering and single code base. In this demo,”We will learn to install Meteor and create a simple application in Windows platform”. You can download the Meteor EXE installer from the Meteor home page.The following screenshot shows the Meteor installation in progress. Following screenshot […]