unity-api-mw v2.0.0
Unity API Middleware
Collection of middleware for unity-api.
Table of Contents
Installation
npm i --save unity-api-mwUsage
If API has been created with unity-api, then its methods can be called like this: API[resource][method](methodParams, middlewareOptions).
Even though the entire middlewareOptions object is available to every middleware in chain, it's best to namespace every middleware with its own key in middlewareOptions. That's why middleware should initially come in a form of high-order function with plain object settings as its argument, so that end-user can override the defaults.
API
retry(settings)
If Response.ok from fetch is false, retry the request again.
settings {Object} Optional
Middleware settings.
key {String} Optional
Default: 'retry'
Key in middlewareOptions to look up.
count {Number} Optional
Default: 0
How many times middleware should attempt to re-fetch if it fails the first time.
Now you can make API calls, changing the default number of retries on per-call basis:
API.user.get({ id: 1 }, { retry: 2 });Example:
// api.js
import resources from './api/resources';
import createAPI from 'unity-api';
import { retry } from 'unity-api-mw'; // or import retry from 'unity-api-mw/lib/retry'
const middleware = [
retry({ key: 'retry', count: 1 }) // retry on every fail once
]
const API = createAPI(resources, middleware, 'api');
export default API;// user.js
import API from './api';
API.user.get({ id: 1 }, { retry: 2 }); // get user with id 1, retry twice on fail instead of once.response(settings)
If the response option is enabled, you can get the whole response.
settings {Object} Optional
Middleware settings.
key {String} Optional
Default: 'response'
Key in middlewareOptions to look up.
Now you can make API calls and get the whole response:
API.user.get({ id: 1 }, { response: true });Example:
// api.js
import resources from './api/resources';
import createAPI from 'unity-api';
import { response } from 'unity-api-mw'; // or import retry from 'unity-api-mw/lib/response'
const middleware = [
response({ key: 'response' })
]
const API = createAPI(resources, middleware, 'api');
export default API;// user.js
import API from './api';
API.user.get({ id: 1 }, { response: true }); // get response.
API.user.get({ id: 1 }, { response: false }); // get response body.cache(settings)
Cache unity-api responses with unity-cache.
This middleware doesn't support caching on per-call basis, meaning it doesn't use anything from middlewareOptions parameter of the API call.
settings {Object} Optional
Middleware settings.
cache {Instance of unity-api} Optional
Default: undefined
Although this parameter is optional, without an instance of unity-cache this middleware is useless.
bin {String} Optional
Default: 'api'
Name of the cache bin reserved for caching API calls in unity-cache instance.
expire {Number} Optional
Default: Number.MAX_SAFE_INTEGER (forever)
The amount of milliseconds API calls should be cached for by default.
resources {Object} Optional
Default: {}
A hash map of resources that should be cached.
Each entry should be indicated by the resource's key, the same one used in setting up of unity-api instance. Values are arrays of plain objects with the following structure:
method {String}
Name of a API's resource method that should be cached.
expire {Number} Optional
Default: Number.MAX_SAFE_INTEGER (forever)
The amount of milliseconds API call to this method should be cached for.
Example:
{
['user' /* key */ ]: [
{ method: 'get', expire: 1000 },
{ method: 'set', expire: 1000 },
{ method: 'delete' }
]
}Putting it all together:
// api.js
import createAPI from 'unity-api';
import createCache from 'unity-cache';
import { cache as cacheMw } from 'unity-api-mw'; // or import cache from 'unity-api-mw/lib/cache'
const resources = {
user: {
namespace: 'people',
methods: {
getById: ({ id }) => ({ path: ['id', id] }),
getByName: ({ name }) => ({ path: ['name', name] }),
}
}
}
const apiCacheBin = 'api';
const cache = createCache([apiCacheBin]);
const middleware = [
cacheMw(
cache, // cache instance created with unity-cache
apiCacheBin, // name of the cache bin
1000, // cache resources for 1 second by default
{
user: [
{ method: 'getById', expire: 1000 * 60 }, // cache all responses from API.user.getById for 1 minute
{ method: 'getByName' } // cache all responses from API.user.getByName for 1 second (default)
]
}
)
]
const API = createAPI(resources, middleware, 'api');
export default API;Contributing
- Provide conventional commit messages by using
npm run commitinstead ofgit commit. - Core contributors: use GitHub's Rebase and merge as a default way of merging PRs.
License
MIT © AuRu
