- v1.14.0Latest
- v1.13.0
- v1.13.0
- v1.12.0
- v1.11.0
- v1.11.0
- v1.9.1
- v1.9.0
- v1.9.0
- v1.8.2
- v1.8.1
- v1.8.0
- v1.7.5
- v1.7.5
- v1.7.4
- v1.7.4
- v1.7.3
- v1.7.2
- v1.7.1
- v1.7.1
- v1.7.0
- v1.6.0
- v1.6.0
- v1.5.0
- v1.4.0
- v1.3.0
- v1.2.4
- v1.2.3
- v1.2.3
- v1.2.2
- v1.2.1
- v1.2.0
- v1.1.3
- v1.1.2
- v1.1.1
- v1.1.0
- v1.0.1
- v1.0.0
- v0.33.3
- v0.33.3
- v0.33.2
- v0.33.1
- v0.33.0
- v0.32.2
- v0.32.1
- v0.32.0
- v0.31.4
- v0.31.3
- v0.31.2
- v0.31.1
- v0.31.0
- v0.30.0
- v0.23.0
- v0.22.0
- v0.21.0
- v0.20.0
- v0.19.1
- v0.19.0
- v0.18.0
- v0.17.0
- v0.16.2
- v0.16.1
- v0.16.0
- v0.15.0
- v0.14.0
- v0.13.0
- v0.12.0
- v0.11.2
- v0.11.1
- v0.11.0
- v0.10.0
- v0.9.1
- v0.9.0
- v0.8.0
- v0.7.1
- v0.7.0
- v0.6.0
- v0.5.2
- v0.5.1
- v0.5.0
- v0.4.1
- v0.4.0
- v0.3.0
- v0.2.0
Ky is a tiny and elegant HTTP client based on the browser Fetch API
Ky targets modern browsers. For older browsers, you will need to transpile and use a fetch polyfill. For Node.js, check out Got.
1 KB (minified & gzipped), one file, and no dependencies.
Benefits over plain fetch
- Simpler API
- Method shortcuts (
ky.post()) - Treats non-200 status codes as errors
- Retries failed requests
- JSON option
- Timeout support
- Instances with custom defaults
Install
$ npm install ky
Usage
import ky from 'ky';
(async () => {
const json = await ky.post('https://some-api.com', {json: {foo: true}}).json();
console.log(json);
//=> `{data: 'π¦'}`
})();With plain fetch, it would be:
(async () => {
class HTTPError extends Error {}
const response = await fetch('https://sindresorhus.com', {
method: 'POST',
body: JSON.stringify({foo: true}),
headers: {
'content-type': 'application/json'
}
});
if (!response.ok) {
throw new HTTPError(`Fetch error:`, response.statusText);
}
const json = await response.json();
console.log(json);
//=> `{data: 'π¦'}`
})();API
ky(input, [options])
The input and options are the same as fetch, with some exceptions:
- The
credentialsoption issame-originby default, which is the default in the spec too, but not all browsers have caught up yet. - Adds some more options. See below.
Returns a Response object with Body methods added for convenience. So you can, for example, call ky.json() directly on the Response without having to await it first. Unlike the Body methods of window.Fetch; these will throw an HTTPError if the response status is not in the range 200...299.
options
Type: Object
json
Type: Object
Shortcut for sending JSON. Use this instead of the body option. Accepts a plain object which will be JSON.stringify()βd and the correct header will be set for you.
ky.get(input, [options])
ky.post(input, [options])
ky.put(input, [options])
ky.patch(input, [options])
ky.head(input, [options])
ky.delete(input, [options])
Sets options.method to the method name and makes a request.
retry
Type: number
Default: 2
Retry failed requests made with one of the below methods that result in a network error or one of the below status codes.
Methods: GET PUT HEAD DELETE OPTIONS TRACE
Status codes: 408 413 429 500 502 503 504
timeout
Type: number
Default: 10000
Timeout in milliseconds for getting a response.
ky.extend(defaultOptions)
Create a new ky instance with some defaults overridden with your own.
defaultOptions
Type: Object
ky.HTTPError
Exposed for instanceof checks. The error has a response property with the Response object.
ky.TimeoutError
The error thrown when the request times out.
Browser support
The latest version of Chrome, Firefox, and Safari.
Related
- got - Simplified HTTP requests for Node.js
License
MIT Β© Sindre Sorhus