personal-site/ubu-env.sh
WesleyBryie be65e8895e Add 'ubu-env.sh'
Signed-off-by: WesleyBryie <wesleybryie@protonmail.com>
2022-02-28 20:22:46 +01:00

12 lines
300 B
Bash

echo This script will only work on ubuntu!
echo Installing NodeJS and NPM!
sudo apt update
sudo apt install nodejs npm -y
echo NodeJS version:
node -v
echo NPM version:
npm -v
echo NodeJS and NPM should be installed!
echo Installing TailWindCSS.
npm install -D tailwindcss
echo TailWindCSS installed!