-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path6-api.js
More file actions
38 lines (32 loc) · 897 Bytes
/
Copy path6-api.js
File metadata and controls
38 lines (32 loc) · 897 Bytes
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
'use strict';
const http = require('node:http');
const ajax = (base, methods) => {
const api = {};
for (const method of methods) {
api[method] = (...args) => {
const callback = args.pop();
const url = `${base}${method}/${args.join('/')}`;
console.log(url);
http.get(url, (res) => {
if (res.statusCode !== 200) {
callback(new Error(`Status Code: ${res.statusCode}`));
return;
}
const buffer = [];
res.on('data', (chunk) => buffer.push(chunk));
res.on('end', () => callback(null, JSON.parse(buffer.join())));
});
};
}
return api;
};
// Usage
const api = ajax('http://localhost:8000/api/', ['user', 'userBorn']);
api.user('marcus', (err, data) => {
if (err) throw err;
console.dir({ data });
});
api.userBorn('mao', (err, data) => {
if (err) throw err;
console.dir({ data });
});