forked from microsoft/TypeScriptSamples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
APIClient.ts
39 lines (33 loc) · 1.19 KB
/
APIClient.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/**
* API client example.
*/
import { IncomingMessage, request } from 'http';
const handleResponse = (resolve: (data: string) => void, reject: (data: Error) => void, response: IncomingMessage): void => {
let chunk = '';
const { statusCode } = response;
if (statusCode !== 200) {
reject(new Error('Server error'));
}
response.setEncoding('utf8')
.on('error', reject)
.on('uncaughtException', reject)
.on('data', (data: string) => chunk += data)
.on('end', () => { resolve(chunk); });
};
const ping = async (): Promise<string> => new Promise((resolve: (data: string) => void, reject: (data: Error) => void) => {
const post = request({
path: '/',
port: 8080,
method: 'GET',
hostname: 'localhost',
headers: {
'Content-Type': 'text/plain'
}
});
const curriedHandleResponse = ((response: IncomingMessage) => { handleResponse(resolve, reject, response); });
post.write('ping');
post.on('response', curriedHandleResponse);
post.on('error', () => { reject(new Error('Request error')); });
post.end();
});
ping().then(console.log).catch(console.error);