ScoopInstaller_Main/nodejs.json
Christophe 2cc2fa29f4 Upgrade nodejs to 6.2.2 (#908)
# Notable changes

- http:
  - req.read(0) could cause incoming connections to stall and time out under certain conditions. (Fedor Indutny) #7211
  - When freeing the socket to be reused in keep-alive Agent wait for both prefinish and end events. Otherwise the next request may be written before the previous one has finished sending the body, leading to a parser errors. (Fedor Indutny) #7149
- npm: upgrade npm to 3.9.5 (Kat Marchán) #7139
2016-06-20 08:05:49 +10:00

25 lines
830 B
JSON

{
"homepage": "http://nodejs.org",
"version": "6.2.2",
"license": "MIT",
"architecture": {
"64bit": {
"url": "https://nodejs.org/dist/v6.2.2/node-v6.2.2-x64.msi",
"hash": "d7e9f474de0605addb6bbb1c5d01b45de88b704f1d72e8f026171baa7cbf75d1"
},
"32bit": {
"url": "https://nodejs.org/dist/v6.2.2/node-v6.2.2-x86.msi",
"hash": "2c186a625473796c2fd70948fa85c8a1e087033fbf25ae16866e2f2f347f0e38"
}
},
"env_add_path": "nodejs",
"post_install": "
# Remove npmrc that makes global modules get installed in AppData\\Roaming\\npm
rm $dir\\nodejs\\node_modules\\npm\\npmrc
npm update -g",
"checkver": {
"url": "https://nodejs.org/en/download/current/",
"re": "Current version: <strong>v([0-9\\.]+)</strong>"
}
}