How To Install nodejs-ascii-tree on CentOS 7

In this tutorial we learn how to install nodejs-ascii-tree on CentOS 7. nodejs-ascii-tree is A node module for generating a text tree in ASCII

Introduction

In this tutorial we learn how to install nodejs-ascii-tree on CentOS 7.

What is nodejs-ascii-tree

Editing an ASCII tree manually is not easy, the freetree module provides an easy way for creating in-memory tree data structure from simple bullet items. This ascii-tree module leverages freetree and outputs formatted tree in ascii characters.

We can use yum or dnf to install nodejs-ascii-tree on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install nodejs-ascii-tree.

Install nodejs-ascii-tree on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install nodejs-ascii-tree using yum by running the following command:

sudo yum -y install nodejs-ascii-tree

Install nodejs-ascii-tree on CentOS 7 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

After updating yum database, We can install nodejs-ascii-tree using dnf by running the following command:

sudo dnf -y install nodejs-ascii-tree

How To Uninstall nodejs-ascii-tree on CentOS 7

To uninstall only the nodejs-ascii-tree package we can use the following command:

sudo dnf remove nodejs-ascii-tree

References

Summary

In this tutorial we learn how to install nodejs-ascii-tree on CentOS 7 using yum and dnf.