Skip to main content

Posts

Showing posts from October, 2019

How to run a Node.js server on Android

If you are curious about node.js want to run on Android then, you arrived at the right place. In this blog, we are going to learn how to built node.js server using the express framework. As you know our smart android phones can do pretty much everything as we want if we know the way how to do it? What we are going to do Installation and configuration Installing VIM code editor Installing and running Node.js 1. Termux The Termux CLI Termux combines terminal emulation with Linux package collection. It comes as a free app that can be installed directly from the play store . 2. Configuration When you open Termux, you are greeted by a  Command Line Interface  (CLI). Right after installing Termux, it is recommended to check for updates and upgrade if need be. So type the following commands at the prompt — that is, after the ‘$’ sign — and press <Enter>: $ apt update && apt upgrade 3. VIM Vim is a text editor that can be used right in th...