Add 'ubu-env.sh'

Signed-off-by: WesleyBryie <wesleybryie@protonmail.com>
This commit is contained in:
WesleyBryie 2022-02-28 20:22:46 +01:00
parent f207acad75
commit be65e8895e
1 changed files with 12 additions and 0 deletions

12
ubu-env.sh Normal file
View File

@ -0,0 +1,12 @@
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!