diff --git a/README.md b/README.md index 4f6188abc..ceae4ec50 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ and see the website (server *and* client) in action. If you plan to specifically change the client side (frontend), do the following once the server is running: - * Install the latest version of NodeJS ![](https://img.shields.io/badge/node-%3E%3D%2011.4.0-brightgreen.svg) + * Install the NodeJS (we guarantee support for the latest LTSĀ and later) ![](https://img.shields.io/badge/node-%3E%3D%2010.0+-brightgreen.svg) * Change directory to `js/` and do: * Install JavaScript package dependencies: `npm install`. * Run the developement server in watch mode: `npm run dev`. This will open a diff --git a/js/package.json b/js/package.json index 4b3fadcaa..5216511e3 100644 --- a/js/package.json +++ b/js/package.json @@ -3,7 +3,7 @@ "version": "0.1.0", "private": true, "engines" : { - "node" : ">=11.4.0" + "node" : ">=10.0.0" }, "scripts": { "dev": "vue-cli-service serve",