Introducing Application Modeling Language AppML
AppML is an Application Modeling Language for bringing data to HTML pages. The home page for AppML is as follows:- http://www.w3schools.com/appml/default.asp AppML extends the HTML with additional feature like data attribute and controller. The AppML uses most of HTML elements and not complex unlike other frameworks like AngularJS or Backbone. The code for appml.js is […]
Backend Data Modeling Using Falcor
Falcor is developed by Netflix for back-end data modeling. All the JSON data is represented a single JSON model as a JSON graph and independent of source of JSON data. Falcor supports JavaScript like path access to retrieve JSON data.The fetching of JSON data from a specific path is done in Asynchronous mode. Falcor supports […]
Should JS Testing Framework
In my previous post we have learnt about MochaJS framework.We will learn ShouldJS in this post. ShouldJS is a behavioral driven test framework. ShouldJS is an expressive framework and makes the test cases simple and keeps it cleaner. In this Demo,”We will learn to use MochaJS with ShouldJS for testing Asynchronous calls”. The ShouldJS can […]
Introducing Mocha js Testing Framework For Node.Js
Mocha is a JavaScript testing framework for running on NodeJS in asynchronous mode. In this demo,”We will learn to install and run Mocha test framework”. The Mocha test framework can be installed using npm install mocha –save-dev command.The following screenshot shows the installation of Mocha framework. To demonstrate Mocha framework we have creates MochaTestDemo project.The […]