Install Needed YARN and Gulp Tools

Install sed and gawk

Helps with string replace and re-naming files.

sudo apt install -y sed gawk;

Install npm and nodejs

Helps getting more development tools.

curl -sL https://deb.nodesource.com/setup_18.x | sudo -E bash -
sudo apt update
sudo apt install nodejs
sudo apt install build-essential

curl -L https://npmjs.com/install.sh | sudo -E bash -
sudo apt update
sudo apt install npm

Install Yarn

sudo apt install yarn

Install Yarn as a global by npm

sudo npm install -g yarn

Install Gulp

Helps in managing tasks when compiling SASS/SCSS to CSS

sudo npm install gulp-cli -g
sudo npm install gulp -D

Last updated