From 3a20c479400dcc1f78cc16171d4fc7686e7c99cb Mon Sep 17 00:00:00 2001 From: Michael Jackson Date: Thu, 7 Apr 2016 21:46:21 +1000 Subject: [PATCH] Pin to node 5.8.x for now A bug was introduced in node v5.9 that causes lots of "unknown compression method" errors, see https://github.com/nodejs/node/issues/5852 Hopefully this is fixed in the next patch release. --- package.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package.json b/package.json index d506c04..2ca7790 100644 --- a/package.json +++ b/package.json @@ -14,5 +14,8 @@ "cors": "^2.7.1", "express": "^4.13.4", "npm-http-server": "^2.9.0" + }, + "engines": { + "node": "5.8.x" } }