verdaccio
Version:
A lightweight private npm proxy registry
16 lines (15 loc) • 539 B
TypeScript
export declare const resolveConfigPath: (storageLocation: string, file: string) => string;
export declare const MIN_NODE_VERSION = "18";
export declare function isVersionValid(version: any): boolean;
/**
* Retrieve all addresses defined in the config file.
* Verdaccio is able to listen multiple ports
* @param {String} argListen
* @param {String} configListen
* eg:
* listen:
- localhost:5555
- localhost:5557
@return {Array}
*/
export declare function getListListenAddresses(argListen: string | void, configListen: any): any;