mirror of
https://github.com/lmg-anon/mikupad.git
synced 2026-07-09 17:19:17 +00:00
16 lines
No EOL
232 B
Bash
Executable file
16 lines
No EOL
232 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if ! command -v node &> /dev/null
|
|
then
|
|
echo "Node.js is not installed."
|
|
exit 1
|
|
fi
|
|
|
|
if ! command -v npm &> /dev/null
|
|
then
|
|
echo "npm is not installed."
|
|
exit 1
|
|
fi
|
|
|
|
npm install --no-audit
|
|
node server.js "$@" |