unpkg/modules/utils/getNpmPackageInfo.js

41 lines
1.3 KiB
JavaScript
Raw Normal View History

2018-07-16 17:17:00 +00:00
const cache = require("./cache");
const fetchNpmPackageInfo = require("./fetchNpmPackageInfo");
const notFound = "PackageNotFound";
2018-07-16 19:05:02 +00:00
function getNpmPackageInfo(packageName) {
return new Promise((resolve, reject) => {
const key = `npmPackageInfo-${packageName}`;
2018-07-16 17:17:00 +00:00
2018-07-16 19:05:02 +00:00
cache.get(key, (error, value) => {
if (error) {
reject(error);
} else if (value != null) {
resolve(value === notFound ? null : JSON.parse(value));
} else {
fetchNpmPackageInfo(packageName).then(value => {
if (value == null) {
2018-07-16 19:05:02 +00:00
resolve(null);
// Cache 404s for 5 minutes. This prevents us from making
// unnecessary requests to the registry for bad package names.
// In the worst case, a brand new package's info will be
// available within 5 minutes.
2018-07-16 19:05:02 +00:00
cache.setex(key, 300, notFound);
} else {
2018-07-16 19:05:02 +00:00
resolve(value);
2018-07-16 17:17:00 +00:00
// Cache valid package info for 1 minute. In the worst case,
// new versions won't be available for 1 minute.
cache.setnx(key, JSON.stringify(value), (error, reply) => {
if (reply === 1) cache.expire(key, 60);
});
}
2018-07-16 19:05:02 +00:00
}, reject);
2018-05-21 22:44:00 +00:00
}
});
2018-02-18 02:00:56 +00:00
});
}
module.exports = getNpmPackageInfo;