Skip to content

Commit

Permalink
updated readme and gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
AOSXAP committed Aug 29, 2021
1 parent 280fe6e commit 92ec063
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -124,4 +124,6 @@ dist
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*
.pnp.*

.vscode
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# reqless
A Node.js HTTP client written in C++
A Node.js HTTP client written in C++, having in mind performance and size!

## Installation

Expand All @@ -13,9 +13,8 @@ $ npm install reqless
```js
const reqless = require("reqless")

const response = reqless.req("https://example.com/", "GET")
console.log(response.body)
console.log(response.headers)
const response = reqless.req("https://example.com/", "GET");
console.log(response.body , response.headers);
```

## Response
Expand Down

0 comments on commit 92ec063

Please sign in to comment.