6 lines
154 B
Bash
6 lines
154 B
Bash
|
#!/usr/bin/env bash
|
||
|
curl -fsSL https://rpm.nodesource.com/setup_18.x | bash -
|
||
|
dnf install -y nodejs
|
||
|
npm install -g npm@latest
|
||
|
node --version
|
||
|
npm --version
|