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 […]
Working With Redis in Node.js
Redis is the open source in-memory data structure store used as caching in applications. In this demo:- We will learn to install and use Redis in Windows platform Redis can be installed using npm install redis –save command. The following screenshot shows the terminal with Redis installation. The updated project structure for RedisDemo will look […]
Atomic CSS with Yahoo Atomizer
Atomic CSS is a set of classes representing single-purpose styling units.It is developed by Yahoo Inc. You can find more information on atomic CSS in the following link:- http://acss.io/thinking-in-atomic.html In this demo,”We will learn to use atomizer to produce atomic CSS”. The atomizer module can be installed globally using npm install atomizer –g command.The following […]
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 […]