From f0928e27d0f8926573ca30906c0d3348d1c00e6a Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Sat, 19 Sep 2020 13:56:36 -0700 Subject: [PATCH] README: Add a dependency section Mentioning how to install nodejs --- README | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README b/README index d6b1de1..9f496b5 100644 --- a/README +++ b/README @@ -3,6 +3,21 @@ Server-side implementation for LMNO games. This repository contains the server-side implementation for a number of games that are hosted at the https://lmno.games/ website. +Dependencies +------------ + +This implementation requires nodejs which can be installed (on a +Debian system at least) with: + + sudo apt-get install nodejs + +Additionally, you'll need to make available a number of third part +node libraries. This is most convenient to by using npm which can be +done as follows: + + sudo apt-get install npm # To install npm install + npm install # To install dependencies into node_modules + Deployment ---------- -- 2.43.0