12 lines
156 B
Bash
Executable File
12 lines
156 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
wget https://rpm.nodesource.com/setup_22.x -O nodesource_setup.sh
|
|
|
|
bash nodesource_setup.sh
|
|
|
|
dnf check-update
|
|
|
|
dnf install nodejs -y
|
|
|
|
|