Nodejs 13
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 […]
Web Sockets with Socket.IO And Node.JS
Socket.io provides an web socket infrastructure using Node.JS. It can be installed using Node Package Manger(NPM) by issuing npm -g install socket.io. You can check my previous post to install Node in your machine. In this Demo, “We will crate a simple Web Socket which will write my name on the socket and the client […]