From: Carl Worth Date: Sat, 19 Sep 2020 20:56:36 +0000 (-0700) Subject: README: Add a dependency section X-Git-Url: https://git.cworth.org/git?p=lmno-server;a=commitdiff_plain;h=f0928e27d0f8926573ca30906c0d3348d1c00e6a README: Add a dependency section Mentioning how to install nodejs --- 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 ----------