Icarus User Guide - CDN Providers
Choosing the right CDN providers can significantly reduce the page loading time of your viewers. Icarus lets you pick among several built-in CDN provider options for serving third-party libraries and asset files used by Icarus.
Built-in CDN providers
Currently, Icarus offers the following built-in CDN providers:
- CDNs for JavaScript Libraries
- cdnjs.com (
cdnjs
) - jsDelivr (
jsdelivr
) - UNPKG (
unpkg
) - loli.net (
loli
)
- cdnjs.com (
- CDNs for Web Fonts
- Google Fonts (
google
) - loli.net (
loli
) - font.im (
fontim
) - ustc.edu.cn (
ustc
)
- Google Fonts (
- FontAwesome Font Icon CDNs
- FontAwesome 5 (
fontawesome
) - loli.net (
loli
)
- FontAwesome 5 (
The default CDN settings are:
1 | providers: |
Custom CDN providers
Additionally, you can also custom CDN providers via URL templates. The template formats for each type of CDN provider are listed below:
CDNs for JavaScript Libraries
1 | https://some.cdn.domain.name/${package}/${version}/${filename} |
You need to replace the actual package name, version of the package, and relative file path with ${package}
,
${version}
, and ${filename}
placeholders.
For example, a JavaScript library with the following URL:
1 | https://unpkg.com/d3@5.7.0/dist/d3.min.js |
can be generalized to this:
1 | https://unpkg.com/${package}@${version}/${filename} |
Some CDN providers may adopt different URL schemes.
For example, the moment.js
library has the URL like this on CDN.js:
1 | https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.22.2/moment.js |
while has the following URL on UNPKG:
1 | https://unpkg.com/moment@2.22.2/min/moment.min.js |
Therefore, you should be aware of the URL format of your custom CDN provider.
By default, Icarus will try to pass in the parameter using npm package name and relative file path
(e.g., moment@2.22.2/min/moment.min.js
).
This npm scheme is used by jsDelivr and UNPKG.
Otherwise, if you are using a CDN.js like provider, please prepend [cdnjs]
to its URL template:
1 | [cdnjs]https://some.cdn.domain.name/${package}/${version}/${filename} |
CDNs for Web Fonts
You can pass in the URL of a Google Font mirror or compatible webfont CDN.
Icarus depends on the Ubuntu
, Oxanium
, and Source Code Pro
fonts, so make sure your CDN provides those.
The URL template should have two placeholders for font type
(icon
or font
) and fontname
:
1 | https://some.google.font.mirror/${type}?family=${fontname} |
FontAwesome Font Icon CDNs
You can pass in the URL to a custom FontAwesome CDN. No placeholders are required. The provided custom CDN should at lease have FontAwesome 5 icons as some of them are used in this theme.
1 | https://custom.fontawesome.mirror/some.stylesheet.css |
All of the above should be put in the providers
section of the theme configurations:
1 | providers: |
CDN helper functions
Three helper functions have been defined to help developers include third-party libraries easily with custom CDN support. You can check them out at ppoffice/hexo-component-inferno.
Icarus User Guide - CDN Providers
http://ppoffice.github.io/hexo-theme-icarus/Configuration/icarus-user-guide-cdn-providers/