Ionic Framework is useful for building mobile apps like Android and iOS. This article will help you to install Node.js, Cordova and Ionic framework on Debian 9 Stretch and Debian 8 Jessie system. 1. Install Node.js You must have Node.js installed on your system. Use the following commands to install NPM and Node.js. The...
Apache Cordova is an open-source mobile development framework. It allows you to use standard web technologies such as HTML5, CSS3, and JavaScript for cross-platform development, avoiding each mobile platforms’ native development language. Apache Cordova command-line requires Node.js to run and available on NPM. This tutorial will help you to Install and Use Apache Cordova...
The yarn is an advanced package management software for Node.js applications. It is a fast, secure, and reliable alternative that any other Nodejs package manager’s. I have installed latest Node.js on Ubuntu and Debian systems. This tutorial contains three methods to install Yarn on Ubuntu, Debian, and LinuxMint systems. Use one of the following...
The yarn is an advanced package management software for Node.js applications. It is a fast, secure, and reliable alternative that any other Nodejs package manager. This tutorial contains three ways to install Yarn on CentOS, Redhat, & Fedora system. Use one of the following ways: 1. Install Yarn using NPM Yarn package is available...
Introduction This tutorial will help you to read JSON file using Node.js. This tutorial uses readFile and readFileSync functions of the jsonfile module. Requirements The first requirement is to have node.js and npm installed on your system. If not already installed use below links. How to Install Node.js on Windows How to Install Node.js...
Node.js is a platform built on Chrome’s V8 JavaScript engine.Nodejs can used for easily building fast, scalable network applications. Latest version node.js ppa is maintaining by its official website. We can add this PPA to Debian 10 (Buster), Debian 9 (Stretch) Debian 8 (Jessie) and Debian 7 (Wheezy) systems. Use this tutorial to install...
PM2 is an advanced, production process manager for Node.js applications. In this tutorial, you will learn how to deploy your Node.js applications on a production server using the pm2 tool. PM2 helps you monitor applications, their memory and CPU uses. Also, provide easy commands to stop/start/restart all apps or individual apps. Step 1 –...
Node.js fs.writeFile() function writes data to a file asynchronously with replacing the file in case of already exists. This function can write data from string or a buffer. The encoding option is ignored if data is a buffer. It defaults encoding is ‘utf8’, Default file mode is 0666 and default flag is used ‘w’...
Node.js is a platform built on Chrome’s JavaScript runtime for easily building fast, scalable network applications. Latest version node.js ppa is maintaining by its official website. We can add this PPA to your Ubuntu 20.04 LTS, 19.10, 18.04 LTS, 16.04 LTS (Trusty Tahr) and 14.04 LTS (Xenial Xerus) systems and install node.js on Linux...
Bower manages the components for website like frameworks, libraries, assets, and utilities. It keeps track of all the components and checks regularly for their updates. Bower uses a manifest file bower.json file to keep track of packages.This tutorial will help you to install Bower on Ubuntu 19.10, 18.04 LTS, 16.04 LTS, and LinuxMint operating...