Javascript 51
Configuring WIFI-ADB Debugging For Android application development
In this demo, We will learn step by step to configure WIFI debugging for Android-React Native application development environment. ADB stands for Android debug bridge. ADB provides CLI-Command line interface to communicate between mobile and development environment. ADB is built on 3 components:- daemon process,server process, client CLI. The daemon process runs on the target […]
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 […]
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 […]