-
Notifications
You must be signed in to change notification settings - Fork 13
/
client.js
45 lines (36 loc) · 1.08 KB
/
client.js
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
40
41
42
43
44
45
const axios = require('axios');
const Promise = require('bluebird');
const asyncFns = require('./async_functions.js');
const url = 'http://localhost:3000';
const file = 'file.txt';
const start = () => console.log('1). Start'); // RUN before the async function
const mid = (action = '') => console.log('2). ' + action); // RUN on the async function
const end = () => console.log('3). End'); // RUN after the async function
/* 1). POST data to the url. Should log:
1). Start
2). Created data
3). End
*/
const postData = () => {
start();
asyncFns.postData(url, { dummyDataK: 'dummyDataV' })
.then(end)
.then(() => end());
};
/* 2). GET data from the url */
const getData = () => {};
/* 3). UPDATE data from the url */
/* 4). DELETE data from the url */
/* 5). */
asyncFns.promisifiedReadFile(file).then(console.log)
/* 6). Tinker with other async functions */
const task5 = () => {
start();
let obj = { val: 10, thin: function(cb) { console.log(this.val); cb(); } }
obj
.thin(end);
}
/* Test Functions */
// postData();
// getData();
// task5();