Tutorials 4
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 […]
Yeoman Generator For ReactJS
The generator-react-webpack module is an Yeoman generator to create ReactJS based application boiler plate. The generator-react-webpack can be installed using npm install generator-react-webpack –g command.The following screenshot shows the terminal with generator-react-webpack installation. On successful installation we can use this generator to create ReactJS application boiler plate.To create a ReactJS boiler plate use yo react-webpack […]