Skip to content

Commit

Permalink
Add keywords to manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
i-like-robots committed Dec 15, 2023
1 parent e13a2db commit 68631df
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -2,7 +2,7 @@

[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/i-like-robots/hardened-fetch/blob/main/LICENSE) ![build status](https://github.com/i-like-robots/hardened-fetch/actions/workflows/test.yml/badge.svg?branch=main) [![npm version](https://img.shields.io/npm/v/hardened-fetch.svg?style=flat)](https://www.npmjs.com/package/hardened-fetch)

Hardened Fetch is a tiny wrapper for `global.fetch` adding request timeouts, request throttling, retries with backoff, rate limit detection, pagination, and descriptive errors. It makes working with APIs without SDKs and web scraping easier.
Hardened Fetch is a tiny wrapper for `global.fetch` adding request timeouts, request throttling, retries with backoff and rate limit support, pagination, and descriptive errors. It makes working with APIs without SDKs and web scraping easier.

```js
import HardenedFetch from 'hardened-fetch'
Expand Down
12 changes: 10 additions & 2 deletions package.json
@@ -1,7 +1,16 @@
{
"name": "hardened-fetch",
"version": "1.0.0",
"description": "",
"description": "Hardened Fetch is a tiny wrapper for `global.fetch` adding request timeouts, request throttling, retries with backoff and rate limit support, pagination, and descriptive errors.",
"keywords": [
"fetch",
"request",
"retry",
"backoff",
"rate-limit",
"concurrency",
"throttle"
],
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
Expand All @@ -26,7 +35,6 @@
"prepublishOnly": "npm run test && npm run build",
"prepare": "husky install"
},
"keywords": [],
"author": "Matt Hinchliffe",
"license": "MIT",
"repository": {
Expand Down

0 comments on commit 68631df

Please sign in to comment.