diff --git a/docs/documentation/install/developer-install-instructions.md b/docs/documentation/install/developer-install-instructions.md index 1dabb88225..816cca7d31 100644 --- a/docs/documentation/install/developer-install-instructions.md +++ b/docs/documentation/install/developer-install-instructions.md @@ -4,7 +4,7 @@ It's built on the [Express](http://expressjs.com/) framework, and uses [GOV.UK F ## Requirements -node.js - version 8.x.x +node.js - version 10.x.x ## Install dependencies diff --git a/docs/documentation/install/requirements.md b/docs/documentation/install/requirements.md index 3e3c539ccc..0a57250411 100644 --- a/docs/documentation/install/requirements.md +++ b/docs/documentation/install/requirements.md @@ -14,7 +14,7 @@ GDS staff can install the software themselves with Managed Software Centre (MSC) You'll need: -* Node.js 8.x.x +* Node.js 10.x.x * Atom (text editor) * Command line tools (Mac) * Git bash (Windows) @@ -48,9 +48,9 @@ command to be typed in to terminal Once you’ve typed the command, press enter to send it. -## Node.js version 8 LTS +## Node.js version 10 LTS -The kit is designed to work with Node.js version 8 LTS. The kit works with any 8.x.x version. +The kit is designed to work with Node.js version 10 LTS. The kit works with any 10.x.x version. ### Check if you have Node.js @@ -60,22 +60,22 @@ node --version ``` If it says `command not found` or `Error 0x2 starting node.exe --version` you don’t have node and will need to download and install it. -If the version number starts with 8 you have the correct version installed. +If the version number starts with 10 you have the correct version installed. -If it says another number such as `0.12` or `5.x.x`, you need to download and install version 8. +If it says another number such as `0.12` or `5.x.x`, you need to download and install version 10. ### Download and install Node.js #### Mac / Windows users -Download version 8 from [nodejs.org](https://nodejs.org/en/). +Download version 10 from [nodejs.org](https://nodejs.org/en/). Run the installer with all default options. #### Linux users Follow the instructions on the [Node.js](https://nodejs.org/en/download/package-manager/#debian-and-ubuntu-based-linux-distributions -) site. Make sure you get version 8, not 9. +) site. Make sure you get version 10. ### Once Node is installed @@ -86,7 +86,7 @@ To check it is installed correctly you can again run: node --version ``` -If it’s installed correctly it should show a number starting with 8. +If it’s installed correctly it should show a number starting with 10. ## Atom (text editor) diff --git a/package.json b/package.json index 7bcc5e71fa..2d5bf71325 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "version": "8.6.0", "private": true, "engines": { - "node": "^8.9.1" + "node": "^10.0.0" }, "scripts": { "start": "node start.js",