This repository has been archived by the owner on Aug 31, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 331
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
222 additions
and
220 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
# API | ||
|
||
## Options | ||
|
||
All options can be specified globally via properties of `toolbox.options`. | ||
Any individual options can be configured on a per-handler basis, via the `Object` passed as the | ||
third parameter to `toolbox.router` methods. | ||
|
||
### debug [Boolean] | ||
Determines whether extra information is logged to the browser's console. | ||
|
||
_Default_: `false` | ||
|
||
### networkTimeoutSeconds [Number] | ||
A timeout that applies to the `toolbox.networkFirst` built-in handler. | ||
If `networkTimeoutSeconds` is set, then any network requests that take longer than that amount of time | ||
will automatically fall back to the cached response if one exists. When | ||
`networkTimeoutSeconds` is not set, the browser's native networking timeout logic applies. | ||
|
||
_Default_: `null` | ||
|
||
### cache [Object] | ||
Various properties of `cache` control the behavior of the default cache when set via | ||
`toolbox.options.cache`, or the cache used by a specific request handler. | ||
|
||
### cache.name [String] | ||
The name of the [`Cache`](https://slightlyoff.github.io/ServiceWorker/spec/service_worker/index.html#cache) | ||
used to store [`Response`](https://fetch.spec.whatwg.org/#response-class) objects. Using a unique name | ||
allows you to customize the cache's maximum size and age of entries. | ||
|
||
_Default_: Generated at runtime based on the service worker's `registration.scope` value. | ||
|
||
### cache.maxEntries [Number] | ||
Imposes a least-recently used cache expiration policy | ||
on entries cached via the various built-in handlers. You can use this with a cache that's dedicated | ||
to storing entries for a dynamic set of resources with no natural limit. Setting `cache.maxEntries` to, e.g., | ||
`10` would mean that after the 11th entry is cached, the least-recently used entry would be | ||
automatically deleted. The cache should never end up growing beyond `cache.maxEntries` entries. | ||
This option will only take effect if `cache.name` is also set. | ||
It can be used alone or in conjunction with `cache.maxAgeSeconds`. | ||
|
||
_Default_: `null` | ||
|
||
### cache.maxAgeSeconds [Number] | ||
Imposes a maximum age for cache entries, in seconds. | ||
You can use this with a cache that's dedicated to storing entries for a dynamic set of resources | ||
with no natural limit. Setting `cache.maxAgeSeconds` to, e.g., `60 * 60 * 24` would mean that any | ||
entries older than a day would automatically be deleted. | ||
This option will only take effect if `cache.name` is also set. | ||
It can be used alone or in conjunction with `cache.maxEntries`. | ||
|
||
_Default_: `null` | ||
|
||
## Handlers | ||
|
||
There are five built-in handlers to cover the most common network strategies. For more information about offline strategies see the [Offline Cookbook](http://jakearchibald.com/2014/offline-cookbook/). | ||
|
||
### `toolbox.networkFirst` | ||
Try to handle the request by fetching from the network. If it succeeds, store the response in the cache. Otherwise, try to fulfill the request from the cache. This is the strategy to use for basic read-through caching. It's also good for API requests where you always want the freshest data when it is available but would rather have stale data than no data. | ||
|
||
### `toolbox.cacheFirst` | ||
If the request matches a cache entry, respond with that. Otherwise try to fetch the resource from the network. If the network request succeeds, update the cache. This option is good for resources that don't change, or have some other update mechanism. | ||
|
||
### `toolbox.fastest` | ||
Request the resource from both the cache and the network in parallel. Respond with whichever returns first. Usually this will be the cached version, if there is one. On the one hand this strategy will always make a network request, even if the resource is cached. On the other hand, if/when the network request completes the cache is updated, so that future cache reads will be more up-to-date. | ||
|
||
### `toolbox.cacheOnly` | ||
Resolve the request from the cache, or fail. This option is good for when you need to guarantee that no network request will be made, for example saving battery on mobile. | ||
|
||
### `toolbox.networkOnly` | ||
Handle the request by trying to fetch the URL from the network. If the fetch fails, fail the request. Essentially the same as not creating a route for the URL at all. | ||
|
||
## Methods | ||
|
||
### `toolbox.router.get(urlPattern, handler, options)` | ||
### `toolbox.router.post(urlPattern, handler, options)` | ||
### `toolbox.router.put(urlPattern, handler, options)` | ||
### `toolbox.router.delete(urlPattern, handler, options)` | ||
### `toolbox.router.head(urlPattern, handler, options)` | ||
Create a route that causes requests for URLs matching `urlPattern` to be resolved by calling `handler`. Matches requests using the GET, POST, PUT, DELETE or HEAD HTTP methods respectively. | ||
|
||
- `urlPattern` - an Express style route. See the docs for the [path-to-regexp](https://github.com/pillarjs/path-to-regexp) module for the full syntax | ||
- `handler` - a request handler, as [described above](#using-request-handlers) | ||
- `options` - an object containing options for the route. This options object will be passed to the request handler. The `origin` option is specific to the router methods, and can be either an exact string or a Regexp against which the origin of the Request must match for the route to be used. | ||
|
||
### `toolbox.router.any(urlPattern, handler, options)` | ||
Like `toolbox.router.get`, etc., but matches any HTTP method. | ||
|
||
### `toolbox.router.default` | ||
Takes a function to use as the request handler for any GET request that does not match a route. | ||
|
||
### `toolbox.precache(arrayOfURLs)` | ||
Add each URL in arrayOfURLs to the list of resources that should be cached during the service worker install step. Note that this needs to be called before the install event is triggered, so you should do it on the first run of your script. | ||
|
||
### `toolbox.cache(url, options)` | ||
Causes the resource at `url` to be added to the cache and returns a Promise that resolves with void. The `options` parameter supports the `debug` and `cache` [global options](#global-options). | ||
|
||
### `toolbox.uncache(url, options)` | ||
Causes the resource at `url` to be removed from the cache and returns a Promise that resolves to true if the cache entry is deleted. The `options` parameter supports the `debug` and `cache` [global options](#global-options). |
Oops, something went wrong.