Gulp Reactify With React.js Component
Reactify is a Browserify for React JSX. To know more about Browserify check my previous post about introduction to Browserify. Browserify enable the code shared between Client and server side. In this demo,”We will learn to create Gulp task to integrate Browserify-reactify to generate bundle that can be used by client side”. The demo requires […]
Streaming Build System Using Gulp.js
Gulp.js is a build system for application development. Gulp.js uses JavaScript programming language to create the application specific build system. In this demo,”We will learn to setup Gulp and create a simple build to generate a minified version of script file”. The Gulp can be installed using npm install gulp –save-dev command in a terminal.The […]
Fake JSON API With Searching Using JSON Server
In my previous post we have learnt creating Fake JSON API for Sorting and Paging using JSON-SERVER node package module for rapid application development. In this demo, “We will learn to use searching with JSON-SERVER NPM module”. The data.json file contains the student record for create a Fake API.The content of data.json file is as […]
Fake JSON API With Sorting And Pagination Using JSON Server
In my previous post we have learnt about creating a fake JSON API using JSON-SERVER Node module for rapid application development. In this Demo, “We will learn to use sorting and paging using JSON-SRVER node module”. We have used data.json file containing students details.The content of data.json file is as follows. { "students": [ { […]