From 2901d37e74ce10667134a85f0d2a29ec13e6bf12 Mon Sep 17 00:00:00 2001 From: Geoffrey Thomas Date: Fri, 1 Apr 2022 08:48:53 -0400 Subject: [PATCH] Update installation instructions in the README --- README.md | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ab951ece4..75600bed9 100644 --- a/README.md +++ b/README.md @@ -62,12 +62,25 @@ A detailed description of the architecture of Git-meta is provided in ## Installation -To install the git-meta plugin: +git-meta currently requires Node.js v16 (LTS) or lower. [nodegit currently does +not work with newer versions of +Node.js.](https://github.com/nodegit/nodegit/issues/1880) + +If you don't have a preferred Node.js setup, we suggest installing +[nvm](https://github.com/nvm-sh/nvm), and then installing the Node.js LTS and +Yarn with + +```bash +$ nvm install --lts +$ npm install -g yarn +``` + +To install the git-meta command: ```bash $ git clone https://github.com/twosigma/git-meta.git $ cd git-meta/node -$ npm install -g +$ yarn install -g ``` ## Quick Start / Basic Usage