This package adds support for URL templates to Axios, according to RFC 6570 URI Template specification.
It uses url-template package and wraps it into Axios interceptor.
$ npm install axios-url-templateor
$ yarn add axios-url-templateimport { urlTemplateInterceptor } from "axios-url-template";
// attaching interceptor to Axios global instance
axios.interceptors.request.use(urlTemplateInterceptor());
// passing options
axios.interceptors.request.use(urlTemplateInterceptor({
urlAsTemplate: false,
}));
// attaching interceptor to Axios instance
const instance = axios.create({ /* ... */});
instance.interceptors.request.use(urlTemplateInterceptor());
// example requests
const response1 = await axios.get('/test/{id}', {
urlTemplateParams: { id: 123 },
});
// config:
// {
// url: '/test/123',
// urlTemplate: '/test/{id}',
// urlTemplateParams: { id: 123 }
// }
const response2 = await axios.get('/test{?foo,bar}', {
urlTemplateParams: { foo: 'foo1', bar: 'bar1' },
});
// config:
// {
// url: '/test?foo=foo1&bar=bar1',
// urlTemplate: '/test{?foo,bar}',
// urlTemplateParams: { foo: 'foo1', bar: 'bar1' },
// }
const response3 = await axios.request({
urlTemplate: '/test/{id}',
urlTemplateParams: { id: 123 },
});
// config:
// {
// url: '/test/123',
// urlTemplate: '/test/{id}',
// urlTemplateParams: { id: 123 },
// }Interceptor may be also registered using shortcut method:
import { useUrlTemplateInterceptor } from "axios-url-template";
useUrlTemplateInterceptor(axios);
const instance = axios.create({ /* ... */});
useUrlTemplateInterceptor(instance, { urlAsTemplate: false });urlAsTemplate: when set totrue, thenurlis treated as template and possibly interpolated. When set tofalseit does not touchurlunlessurlTemplateis explicitly specified. Default:true.
When urlTemplate (and optional urlTemplateParams) is provided in Axios config object,
this interceptor uses it to generate url. Those template fields are persisted in config object,
so after execution config will contain all of those fields:
urlurlTemplateurlTemplateParams- when no parameter are provided it will be an empty object
When urlAsTemplate option is set to true (default), then url will be also treated as url template
and passed through interpolation. In this case, urlTemplate and urlTemplateParams
will be added accordingly, and url will be replaced with interpolated value,
giving the same effect as for urlTemplate.
When no urlTemplate is provided and urlAsTemplate option is set to false then
the interceptor passes request config without any changes.
This interceptor helps to automate things like structural logging and/or request metrics, where low cardinality route is preferred over full URL with dynamic parts.
When request is performed in traditional way, there is no easy option to retrieve such route from full URL provided in call to Axios. It may be provided as custom fields, but it increases overhead and may generate mistakes.
The interceptor ensures consistency, as actual URL provided to Axios is computed from route (url template) and parameters.
Example (in TypeScript):
import axios, { AxiosResponse } from 'axios';
import { useUrlTemplateInterceptor } from "axios-url-template";
// example logging interceptor
function loggingInterceptor(response: AxiosResponse) {
const { status, statusText } = response;
const { urlTemplate, urlTemplateParams } = response.config;
const url = axios.getUri(response.config);
const logObject = {
status,
statusText,
url,
route: urlTemplate, // low cardinality value is preferred
routeParams: urlTemplateParams, // dynamic route parts
};
// do something with such log object
console.log(JSON.stringify(logObject, null, 2));
}
// attach url template interceptor
useUrlTemplateInterceptor(axios, { urlAsTemplate: true })
// attach logging interceptor
axios.interceptors.response.use(loggingInterceptor);
async function execute() {
await axios.get("https://postman-echo.com/status/{status}", {
urlTemplateParams: { status: 201 },
});
await axios.get("https://postman-echo.com/get{?foo,bar}", {
urlTemplateParams: { foo: "foo1", bar: "bar1" },
params: { baz: 'baz1' }, // additional param, not being part of route
});
}
execute().catch(console.error);Result:
{
"status": 201,
"statusText": "Created",
"url": "https://postman-echo.com/status/201",
"route": "https://postman-echo.com/status/{status}",
"routeParams": {
"status": 201
}
}
{
"status": 200,
"statusText": "OK",
"url": "https://postman-echo.com/get?foo=foo1&bar=bar1&baz=baz1",
"route": "https://postman-echo.com/get{?foo,bar}",
"routeParams": {
"foo": "foo1",
"bar": "bar1"
}
}MIT