Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | import { API_PATHS } from "../../constants/url";
const NOT_FOUND = "NOT_FOUND";
/**
* Download stats for all packages, indexed by npm package name.
*/
export interface PackageStats {
readonly updated: string;
readonly packages: { [key: string]: PackageStatsEntry };
}
/**
* Download stats for a single package.
*/
export interface PackageStatsEntry {
readonly downloads?: { npm: number };
}
const defaultStats = { packages: {}, updated: NOT_FOUND };
export const fetchStats = async (): Promise<PackageStats> => {
const response = await fetch(API_PATHS.STATS);
if (!response.ok) {
console.error(response.statusText);
console.warn("Could not retrieve package stats. Using empty stats.");
return defaultStats;
}
return response.json().catch((err) => {
console.error(err);
console.warn("Error in package stats response. Using empty stats.");
return defaultStats;
});
};
|