# rollup-plugin-cdn **Repository Path**: mirrors_WebReflection/rollup-plugin-cdn ## Basic Information - **Project Name**: rollup-plugin-cdn - **Description**: Resolve locally all dependencies loaded through fully qualified CDN urls. - **Primary Language**: Unknown - **License**: ISC - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-19 - **Last Updated**: 2026-07-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # rollup-plugin-cdn [](https://coveralls.io/github/WebReflection/rollup-plugin-cdn?branch=master) [](https://travis-ci.org/WebReflection/rollup-plugin-cdn) [](https://opensource.org/licenses/ISC) Resolve locally all dependencies loaded through fully qualified CDN urls. ## Deprecated Please check https://github.com/mjackson/rollup-plugin-url-resolve which is actively maintained. ### Supported CDNs Following the list of supported CDNs (so far). * [unpkg.com](https://unpkg.com/#/) * [rawgit.com](https://rawgit.com) (both dev and prod links) ### Example If your module has [hyperHTML](https://github.com/WebReflection/hyperHTML) as dependency, and you have installed it locally, you can import it as fully qualified ESM module. The remote url will be resolved through the locally installed dependency. ```js import hyper from 'https://unpkg.com/hyperhtml@latest/esm/index.js'; hyper(document.body)`