You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
300 B
12 lines
300 B
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!
|