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 […]
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. […]