Nodejs 13
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 […]
Create Your Own Gulp Plugin
A Gulp plugin takes input a vinyl file object and returns a vinyl file object. Vinyl means Virtual file format and It represents metadata object that describes a file.For example path and content are attributes on a Vinyl object. In this Demo, “We will learn to develop a custom Gulp plugin”. We will be developing […]
Introducing Ampersand JS non-frameworky framework
Ampersand.js is yet another framework for building JavaScript applications. Ampersand.js is modular in structure and each modules are loosely coupled. In this demo,”We will learn to install Ampersand.js and generate a sample Application using Ampersand generator”. Ampersand.js can be installed globally using npm install ampersand –g command.The following screenshot shows the terminal with Ampersand.js installation. […]
JSON Schema Faker Demo
The json-schema-faker module is used for creating Random JSON data from a given JSON schema. This library is really useful for developers and tester during development and testing. In this demo,”We will learn to install json-schema-faker and learn its use with a simple example”. This json-schema-faker library is build using faker.js, chance.js and randexp.js libraries. […]