Tutorials 4
Getting Started With Structor Builder for ReactJS
Structor is a user interface builder for Web applications with React UI. You can learn more about structor builder from following URL:- https://github.com/ipselon/structor In this demo, “We will learn to get started with structor builder“ To install structor module as global package use following command:- npm install structor -g Now let’s clone a seed […]
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 […]
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 […]