Skip to content

Commit

Permalink
Update README.nbs
Browse files Browse the repository at this point in the history
  • Loading branch information
Phara0h committed Sep 15, 2020
1 parent f4add88 commit 505209a
Showing 1 changed file with 2 additions and 38 deletions.
40 changes: 2 additions & 38 deletions README.nbs
Original file line number Diff line number Diff line change
@@ -1,41 +1,5 @@
# Fasquest
A fast node request model, works very similar to `request` module but way faster and no dependencies + it works in the browser!
# Sky Puppy
A easy to use reliable health checking service with Prometheus export

### Install
```
npm install fasquest
```

### Basic Node Example
```js
const Fasquest = require('fasquest');

var options = {
uri: 'http://127.0.0.1/',
resolveWithFullResponse: true
}

Fasquest.request(options).then(res=>{
console.log('hey look I got a response')
})


```

### Basic Web Example
```js
import Fasquest from "fasquest";
var options = {
uri: 'http://127.0.0.1/',
resolveWithFullResponse: true
}

await Fasquest.request(options);


```


## Changelog

{{doc1}}

0 comments on commit 505209a

Please sign in to comment.