File tree 1 file changed +2
-38
lines changed
1 file changed +2
-38
lines changed Original file line number Diff line number Diff line change 1
- # Fasquest
2
- A fast node request model, works very similar to `request` module but way faster and no dependencies + it works in the browser!
1
+ # Sky Puppy
2
+ A easy to use reliable health checking service with Prometheus export
3
3
4
- ### Install
5
- ```
6
- npm install fasquest
7
- ```
8
-
9
- ### Basic Node Example
10
- ```js
11
- const Fasquest = require('fasquest');
12
-
13
- var options = {
14
- uri: 'http://127.0.0.1/',
15
- resolveWithFullResponse: true
16
- }
17
-
18
- Fasquest.request(options).then(res=>{
19
- console.log('hey look I got a response')
20
- })
21
-
22
-
23
- ```
24
-
25
- ### Basic Web Example
26
- ```js
27
- import Fasquest from "fasquest";
28
- var options = {
29
- uri: 'http://127.0.0.1/',
30
- resolveWithFullResponse: true
31
- }
32
-
33
- await Fasquest.request(options);
34
-
35
-
36
- ```
37
-
38
-
39
- ## Changelog
40
4
41
5
{{doc1}}
You can’t perform that action at this time.
0 commit comments