Nodejs 13
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 […]
Cheerio Parsing DOM string in NodeJS
Cheerio provides a library to parse HTML DOM in the server side. It provide Jquery($) like DOM manipulation methods. You can find more information in the following URL:- http://cheeriojs.github.io/cheerio/ In this demo, “We will learn to parse dom string and find element in Node.js code”. The cheerio NPM module can be installed using npm install […]
PhotonKit UI components for Electron.js
PhotonKit provides a design pattern for building UI for desktop application using Electron.js. You can find more information on PhotonKit in following URL:- http://photonkit.com/components/ PhotonKit provide some common component like header,footer,sidebar and content. In this demo, “We will learn to use PhotonKit in a demo application developed in Electron.js”. You can download the PhotonKit from […]