photoprism/scripts/dist/install-nodejs.sh

20 lines
436 B
Bash
Raw Normal View History

2022-02-17 12:54:42 +00:00
#!/usr/bin/env bash
# abort if not executed as root
2022-02-17 12:54:42 +00:00
if [[ $(id -u) != "0" ]]; then
echo "Usage: run ${0##*/} as root" 1>&2
2022-02-17 12:54:42 +00:00
exit 1
fi
set -e
SETUP_URL="https://deb.nodesource.com/setup_16.x"
echo "Installing NodeJS and NPM from \"$SETUP_URL\"..."
curl -sL $SETUP_URL | bash -
2022-02-17 12:54:42 +00:00
apt-get update && apt-get -qq install nodejs
npm install --unsafe-perm=true --allow-root -g npm testcafe
2022-02-17 12:54:42 +00:00
npm config set cache ~/.cache/npm
echo "Done."