query-registry
Version:
Query the npm registry for packuments, manifests, packages and download counts
37 lines • 1.01 kB
TypeScript
/**
* npm registry
*
* @see {@link https://registry.npmjs.org}
*/
export declare const npmRegistry = "https://registry.npmjs.org";
/**
* npm registry mirror by Cloudflare
*
* @remarks
* This registry has CORS enabled and can be used to retrieve
* package manifests and packuments in the browser.
*
* @see {@link https://npmjs.cf}
* @see {@link https://registry.npmjs.cf}
*/
export declare const cloudflareRegistry = "https://registry.npmjs.cf";
/**
* npm registry mirror by Yarn
*
* @see {@link https://registry.yarnpkg.com}
*/
export declare const yarnRegistry = "https://registry.yarnpkg.com";
/**
* Mirrors of the npm registry.
*
* @see {@link cloudflareRegistry}
* @see {@link yarnRegistry}
*/
export declare const npmRegistryMirrors: string[];
/**
* Downloads API for the npm registry
*
* @see {@link https://api.npmjs.org}
*/
export declare const npmRegistryDownloadsAPI = "https://api.npmjs.org";
//# sourceMappingURL=registries.d.ts.map