Reputation: 394
I recently updated gulp to version 4.0.2 in one of my projects and would like to update my README's installation instructions. One of the requirements is obviously npm
and node
. I would like to know what version of npm
and node
is required for gulp v4.0.2 to work, the minimum version required.
I tried looking for the answer in gulp's documentation but to no avail. https://www.npmjs.com/package/gulp
Upvotes: 0
Views: 4245
Reputation:
Looking at Gulp's package.json there's an engines
entry:
"engines": {
"node": ">= 0.10"
},
So I'm going to guess they keep that up to date and the minimum version would be >= 0.10
.
As for the npm
version, do a search for Node.js 0.10.0
on this page and you'll find 1.2.14
.
Upvotes: 3
Reputation: 89
The Quick Start in the official docs implies that it will at least work with Node v8.11.1 and npm 5.6.0.
Not certain if those are the minimum requirements, however.
Upvotes: 0