diff --git a/README.md b/README.md index a8189f3..8d0741a 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@
Node Fetch
-

A light-weight module that brings window.fetch to Node.js.

+

A light-weight module that brings Fetch API to Node.js.

Build status Coverage status Current version @@ -49,6 +49,7 @@ - [Default Headers](#default-headers) - [Custom Agent](#custom-agent) - [Custom highWaterMark](#custom-highwatermark) + - [Insecure HTTP Parser](#insecure-http-parser) - [Class: Request](#class-request) - [new Request(input[, options])](#new-requestinput-options) - [Class: Response](#class-response) diff --git a/package.json b/package.json index 2bf014b..ed242d1 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "node-fetch", "version": "3.0.0-beta.7", - "description": "A light-weight module that brings window.fetch to node.js", + "description": "A light-weight module that brings Fetch API to node.js", "main": "./dist/index.cjs", "module": "./src/index.js", "sideEffects": false, @@ -34,7 +34,12 @@ "keywords": [ "fetch", "http", - "promise" + "promise", + "request", + "curl", + "wget", + "xhr", + "whatwg" ], "author": "David Frank", "license": "MIT",