UNPKG

node-filename-to-dist-paths

Version:

Converts files from https://nodejs.org/dist/index-cjson into relative distribution paths for download from https://nodejs.org/dist/

7 lines (6 loc) 207 B
import Cache from 'fetch-json-cache'; import { CACHE_PATH, DISTS_URL } from './constants.js'; const cache = new Cache(CACHE_PATH); export default function getDists() { return cache.getSync(DISTS_URL); }