yarn and http-server node packages are quite useful.

This commit is contained in:
2023-09-05 14:01:08 +00:00
parent 136294836a
commit 807f5cdab7
+15
View File
@@ -91,6 +91,21 @@ case $node_lang in
;;
esac
echo "----- Install NodeJS Apps Yarn and HttpServer -------"
read -p 'Install NodeJS Apps "yarn" and "http-server" globally? [y/N]: ' node_more
case $node_more in
[Yy]* )
echo "----- Installing NodeJS 'yarn' globally -------------"
sudo npm install --global yarn
echo "----- Installing NodeJS 'http-server' globally ------"
sudo npm install --global http-server
echo "----- Completed NodeJS Apps -------------------------"
;;
* )
echo 'Skipping'
;;
esac
echo "----- Install Go Lang -------------------------------"
read -p 'Install Go Lang? [y/N]: ' go_lang
case $go_lang in