Javascript 51
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": [ { […]
Create Fake JSON API For Rapid Development Using JSON Server
Node Package Manager(NPM) provides a module name JSON-SERVER for creating Fake JSON API for rapid application development. In this demo, “We will learn to create a fake JSON API using JSON-SERVER module”. To install JSON-SERVER use npm install json-server -g command in a terminal.The following screenshot shows the terminal with json-server installation in progress. After […]
Getting Started Isomorphic React JS With Express And EJS
In my previous post we have learn to use Isomorphic React JS with Express server. In this Demo, “We will learn to EJS template in Node Express Server and Isomorphic React JS”. We need to install express,react and ejs node modules to for this demo.In previous post we have already installed express and react.We need […]