From: Micheas Herman Date: Thu, 10 Feb 2022 19:38:56 +0000 (-0800) Subject: Note the maximum working node version is 10.x X-Git-Tag: v2.4.0^2~5^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fb5ec1bf7f337648758f92f1583d35d54fb9b429;p=thirdparty%2Ffoundation%2Ffoundation-emails.git Note the maximum working node version is 10.x Update instructions to note the requirement of an ancient version of node. --- diff --git a/README.md b/README.md index 2e327102..c171c88f 100644 --- a/README.md +++ b/README.md @@ -11,13 +11,17 @@ Foundation for Emails (previously known as Ink) is a framework for creating resp ## Getting Started -The main way to get started is with our [email template stack](https://github.com/zurb/foundation-emails-template). To use the stack, you'll need [Node.js](https://nodejs.org/en/) installed on your machine. +The main way to get started is with our [email template stack](https://github.com/zurb/foundation-emails-template). To use the stack, you'll need [Node.js](https://nodejs.org/en/) no greater than version 10 installed on your machine. + +`nvm` installation instructions can be found [here](https://github.com/nvm-sh/nvm#install--update-script) To set up the emails template, run these commands: ```bash git clone https://github.com/zurb/foundation-emails-template project cd project +nvm install 10 +nvm use 10 npm install ```