free-cdn
jsDelivr 是一个提供免费、快速且可靠的全球内容分发网络(CDN)服务,它集成了 NPM 和 GitHub,为用户提供了生产就绪的性能、多CDN支持、智能负载均衡和故障转移功能。jsDelivr 主要用于分发 Web 上经常使用的静态资源,如 JavaScript 库、jQuery 插件、CSS 框架和字体等。它的目标是确保每个地区的用户都能获得最佳的链接速度
jsdelivr
1.github加速
//想引用 GitHub 上的某个文件
https://cdn.jsdelivr.net/gh/用户名/仓库名@版本号/文件路径
...
// load any GitHub release, commit, or branch
note: we recommend using npm for projects that support it
https://cdn.jsdelivr.net/gh/user/repo@version/file
// load jQuery v3.6.4
https://cdn.jsdelivr.net/gh/jquery/[email protected]/dist/jquery.min.js
// use a version range instead of a specific version
https://cdn.jsdelivr.net/gh/jquery/[email protected]/dist/jquery.min.js
https://cdn.jsdelivr.net/gh/jquery/jquery@3/dist/jquery.min.js
// omit the version completely to get the latest one
you should NOT use this in production
https://cdn.jsdelivr.net/gh/jquery/jquery/dist/jquery.min.js
// add ".min" to any JS/CSS file to get a minified version
if one doesn't exist, we'll generate it for you
https://cdn.jsdelivr.net/gh/jquery/[email protected]/src/core.min.js
// add / at the end to get a directory listing
https://cdn.jsdelivr.net/gh/jquery/jquery/
2.npm
//example
https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js
// load any project hosted on npm
https://cdn.jsdelivr.net/npm/package@version/file
// load jQuery v3.6.4
https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js
// use a version range instead of a specific version
https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js
https://cdn.jsdelivr.net/npm/jquery@3/dist/jquery.min.js
// omit the version completely to get the latest one
you should NOT use this in production
https://cdn.jsdelivr.net/npm/jquery/dist/jquery.min.js
// add ".min" to any JS/CSS file to get a minified version
// if one doesn't exist, we'll generate it for you
https://cdn.jsdelivr.net/npm/[email protected]/src/core.min.js
// omit the file path to get the default file
https://cdn.jsdelivr.net/npm/[email protected]
// add / at the end to get a directory listing
https://cdn.jsdelivr.net/npm/jquery/