gera2ld / npm2url

Convert an NPM package import into a CDN URL.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

npm2url

npm version npm downloads bundle JSDocs

Convert an NPM package import into a CDN URL.

Usage

Install package:

pnpm install npm2url

Import:

import { urlBuilder } from "npm2url";

const url: string = urlBuilder.getFullUrl('npm2url');
const url: string = urlBuilder.getFullUrl('npm2url', 'jsdelivr');

// find the fastest provider
await urlBuilder.findFastestProvider();
const fastestUrl = urlBuilder.getFullUrl('npm2url');

// find the fastest provider temporarily
const fastest = await urlBuilder.getFastestProvider();
const fastestUrl = urlBuilder.getFullUrl('npm2url', fastest);

License

Made with đź’›

Published under MIT License.

About

Convert an NPM package import into a CDN URL.

License:MIT License


Languages

Language:TypeScript 100.0%