English | 简体中文
A tiny non-intrusive library to retry your assets (scripts, stylesheets, images) when they failed to load, only 3 KB gzipped, even works with dynamic import!
$ npm install assets-retry --save
Then, inject the library at the beginning of the page with proper webpack configurations. See example
If you don't want to spend your time fiddling around with webpack configurations, you can inline the minified file with a script tag, and place it at the beginning of the page.
All you have to provide is the domain parameter, which are the domains to retry when assets failed to load.
// information of assets
var assetsRetryStatistics = window.assetsRetry({
// domain list, only resources in the domain list will be retried.
domain: ['your.first.domain', 'your.second.domain/namespace'],
// maximum retry count for each asset, default is 3
maxRetryCount: 3,
// onRetry hook is how you can customize retry logic with, default is x => x
onRetry: function(currentUrl, originalUrl, statistics) {
return currentUrl
},
// for a given resource (except background-images in css),
// either onSuccess or onFail will be eventually called to
// indicate whether the resource has been successfully loaded
onSuccess: function(currentUrl) {
console.log(currentUrl, assetsRetryStatistics[currentUrl])
},
onFail: function(currentUrl) {
console.log(currentUrl, assetsRetryStatistics[currentUrl])
}
})
When the initialization is finished, following content gains the power of retrying automatically.
<script>
tag in html<link rel="stylesheet">
tag in html (properly configured)<img>
tag in htmldocument.createElement
, such as dynamic import.background-image
in css
The assetsRetry
function takes an AssetsRetryOptions
, which is defined as follows:
interface AssetsRetryOptions {
maxRetryCount: number
onRetry: RetryFunction
onSuccess: SuccessFunction
onFail: FailFunction
domain: Domain
}
type RetryFunction = (
currentUrl: string,
originalUrl: string,
retryCollector: null | RetryStatistics
) => string | null
interface RetryStatistics {
retryTimes: number
succeeded: string[]
failed: string[]
}
type SuccessFunction = (currentUrl: string) => void
type FailFunction = (currentUrl: string) => void
type Domain = string[] | { [x: string]: string }
domain
: domain list, can be array or object type
{ 'a.cdn': 'b.cdn', 'c.cdn': 'd.cdn' }
means failed assets from a.cdn
should be retried from b.cdn
, failed assets from c.cdn
should be retried from d.cdn
maxRetryCount
: maximum retry count for each asset, default is 3onRetry
: hook function which was called before trying to load any assets
currentUrl
: next url to tryoriginalUrl
: last failed urlretryCollector
: information collector for current asset, if the asset was from url()
function defined in your stylesheets, it will be null. When it's not null
, it's an object with following properties:
retryTimes
: current retry times (starts from 1)failed
: failed assets list(may be duplicated when retrying from the same domain multiple times)succeeded
: succeeded assets listString
or null
:
onSuccess
: hook function which was called when asset has loaded
currentUrl
: return the asset name which you can use to get statistics from information collectoronFail
: hook function which was called when asset failed to load
currentUrl
: return the asset name which you can use to get statistics from information collectorQ: Stylesheets or background images are not retried from backup domain, why?
A: Due to security policies of browsers, access to cssRules
is not allowed for cross origin stylesheets by default. To fix this:
crossorigin="anonymous"
attribute on link element for cross origin stylesheets.47+ ✔ | 15+ ✔ | 32+ ✔ | 10+ ✔ | 34+ ✔ | 10+ ✔ | 10+ ✔ | 4.4+ ✔ |
npm t
: Run test suitenpm start
: Run npm run build
in watch modenpm run test:watch
: Run test suite in interactive watch modenpm run test:prod
: Run linting and generate coveragenpm run build
: Generate bundles and typings, create docsnpm run lint
: Lints codenpm run commit
: Commit using conventional commit style (husky will tell you to use it if you haven't :wink:)