Npm 6
Working with Grunt Browserify Task
The grunt-browserify is an NPM module to work with Browserify.It can generate browserified code that can be used by browsers. In this demo, “We will learn to create grunt task using grunt-browserify”. To demonstrate grunt-browserify module use we have created a project named GruntBrowserifyDemo. The project structure looks like following screenshot:- We need to […]
Developing Command Line tool Using Node.js
The Commander.js is a NPM module to develop commands, sub-commands and options to run on the system terminal. You can find the commander.js NPM module in following link:- https://www.npmjs.com/package/commander In this demo, “We will learn to create command and options using Commander.js”. We will be building a command named devise and subcommand info with 2 […]
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": [ { […]