12 lines
209 B
Bash
12 lines
209 B
Bash
#!/bin/bash
|
|
|
|
# Superball Thrower Daemon Installation Script
|
|
# This script installs and configures the Superball Thrower daemon
|
|
|
|
sudo apt install nodejs npm
|
|
|
|
# Verify installation
|
|
node --version
|
|
npm --version
|
|
|