0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-04-01 02:42:23 -05:00

fix upstream search (registry.npmjs.org)

This commit is contained in:
Meeeeow 2017-04-22 16:28:47 +08:00
parent caabe0ebda
commit e5ad620a15

View file

@ -98,7 +98,7 @@ module.exports = function(config, auth, storage) {
var received_end = false
var response_finished = false
var processing_pkgs = 0
let firstPackage = true
var firstPackage = true
res.status(200)
@ -114,13 +114,15 @@ module.exports = function(config, auth, storage) {
* See: method 'request' in up-storage.js
*
* If there is no cache in local, NPM will request /-/all, then get response with
* _updated: 99999, after this, NPM will request /-/all/since with another magic
* number 434592768000
* _updated: 99999, 'Date' in response header was Mon, 10 Oct 1983 00:12:48 GMT,
* this will make NPM always query from server
*
* Data structure also different, whel request /-/all, response is an object, but
* when request /-/all/since, response is an array
*/
const respShouldBeArray = req.path.endsWith('/since')
var respShouldBeArray = req.path.endsWith('/since')
res.set('Date', 'Mon, 10 Oct 1983 00:12:48 GMT')
if (respShouldBeArray) {
res.write('[')
} else {