aggirih021

Bash Script to Install Node.js on Linux Debian

10 Mei 2023

        

    Hari ini aku mencoba mencari cara untuk install Node.js di linux keluarga debian. Iseng aku mencoba bertanya ke AI yang baru baru ini baru populer & memudahkan orang untuk mencari cara, mencari solusi untuk memecahkan persoalan/case project, salah satu contohnya melakukan instalasi node.js dengan bash script, otomasi ini ceritanya, tidak perlu mengetik ulang, bisa dipakai lagi di waktu yang lain.

 

bash script
bash script


Sure! Here's a bash script to install Node.js on Linux:

#!/bin/bash# add Node.js PPA
curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash -
# install Node.js and npmsudo apt-get install -y nodejs
# check Node.js and npm versionsnode -vnpm -v


Proses ini kalau dalam bahasa Inggris bisa dipahami seperti ini prosesnya, proses untuk install Node.js. Silakan mencoba dengan menggunakan linux versi WSL atau Linux debian ( ubuntu, kali linux dkk) untuk menocba script bash ini

This script:

  1. Uses curl to download the Node.js PPA setup script for version 14.x.

  2. Pipes the script output to sudo and bash to execute it with elevated privileges.

  3. Installs Node.js and npm using apt-get.

  4. Verifies the installation by printing the versions of Node.js and npm.

To run this script:

  1. Copy and paste the code into a new file with a .sh extension, for example install-nodejs.sh.

  2. Open a terminal and navigate to the directory containing the script file.

  3. Make the script executable using chmod +x install-nodejs.sh.

  4. Run the script using ./install-nodejs.sh.

  5. Follow the on-screen prompts to install Node.js and npm.

Agustinus Giri Hartono
#My name is Giri #Agustinus Giri Hartono. #Home is where the heart is #DevOps Enthusiast

Komentar