Tutorials 4
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 […]
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 […]