How To Install nodejs-less on CentOS 7

In this tutorial we learn how to install nodejs-less on CentOS 7. nodejs-less is Less.js The dynamic stylesheet language

Introduction

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

What is nodejs-less

LESS extends CSS with dynamic behavior such as variables, mixins, operations and functions. LESS runs on both the client-side (Chrome, Safari, Firefox) and server-side, with Node.js and Rhino.

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

Install nodejs-less 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-less using yum by running the following command:

sudo yum -y install nodejs-less

Install nodejs-less 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-less using dnf by running the following command:

sudo dnf -y install nodejs-less

How To Uninstall nodejs-less on CentOS 7

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

sudo dnf remove nodejs-less

References

Summary

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