From be65e8895ede551c126edf9ef644fec0a73854e2 Mon Sep 17 00:00:00 2001 From: WesleyBryie Date: Mon, 28 Feb 2022 20:22:46 +0100 Subject: [PATCH] Add 'ubu-env.sh' Signed-off-by: WesleyBryie --- ubu-env.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 ubu-env.sh diff --git a/ubu-env.sh b/ubu-env.sh new file mode 100644 index 0000000..713848e --- /dev/null +++ b/ubu-env.sh @@ -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! \ No newline at end of file