diff --git a/README.md b/README.md index 4140c5b42..89b28f8f8 100755 --- a/README.md +++ b/README.md @@ -90,7 +90,7 @@ MS Internet Explorer (any version) is not supported! While the Homebridge UI should work on Node.js 14+, only the following versions of Node.js are officially supported: * node v14.15.0 or higher -* npm v6.14.8 or higher +* npm v6.4.1 or higher You can check your current versions using these commands: diff --git a/src/bin/hb-service.ts b/src/bin/hb-service.ts index 9815b19db..726ea6409 100644 --- a/src/bin/hb-service.ts +++ b/src/bin/hb-service.ts @@ -615,12 +615,12 @@ export class HomebridgeServiceHelper { } /** - * Checks the current Node.js version is > 14 + * Checks the current Node.js version is > 10 */ private nodeVersionCheck() { - // 83 = v14; - if (parseInt(process.versions.modules, 10) < 83) { - this.logger(`ERROR: Node.js v14.15.0 or greater is required. Current: ${process.version}.`, 'fail'); + // 64 = v10; + if (parseInt(process.versions.modules, 10) < 64) { + this.logger(`ERROR: Node.js v10.13.0 or greater is required. Current: ${process.version}.`, 'fail'); process.exit(1); } }