-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
2 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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}} |