From a89aea38753dff282372675a45f5b9686c6bd223 Mon Sep 17 00:00:00 2001 From: Lee Stott Date: Fri, 3 Oct 2025 11:43:20 +0100 Subject: [PATCH] Update INSTALLATION.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- INSTALLATION.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/INSTALLATION.md b/INSTALLATION.md index 43c20133..2d55eb53 100644 --- a/INSTALLATION.md +++ b/INSTALLATION.md @@ -141,6 +141,14 @@ The quiz application requires Node.js and npm. **Linux:** ```bash # Debian/Ubuntu +# WARNING: Piping scripts from the internet directly into bash can be a security risk. +# It is recommended to review the script before running it: +# curl -fsSL https://deb.nodesource.com/setup_lts.x -o setup_lts.x +# less setup_lts.x +# Then run: +# sudo -E bash setup_lts.x +# +# Alternatively, you can use the one-liner below at your own risk: curl -fsSL https://deb.nodesource.com/setup_lts.x | sudo -E bash - sudo apt-get install -y nodejs