-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
48 lines (40 loc) · 1.19 KB
/
server.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
46
47
48
var express = require('express');
var app = express();
var path=require('path');
var axios=require('axios');
var port=3000
app.use(express.static(__dirname + '/src/client'))
app.get( '/', ( req, res ) => {
res.sendFile( path.join( __dirname, 'src/client', 'index.html' ));
});
app.get( '/chat', ( req, res ) => {
res.sendFile( path.join( __dirname, 'src/client', 'chat.html' ));
});
initialise = () => {
let data = axios.get('http://localhost:8080/chat/init', { headers:
{
'x-correlation-id': '12',
'x-version': '1.0',
'x-api-key': 'api-secret'
}
})
.then(response => {
console.log('chat response1: ' + response.data.message);
return response.data
})
.catch(error => {
console.log(error);
return error;
});
return data;
};
init = () => {
return Promise.resolve({correlationId: 1, message: 'welcome'})
}
app.get( '/chat/init', ( req, res ) => {
init().then(json => {
console.log('chat response2: ' + json.message);
res.send({'correlationId': json.correlationId, 'message': json.message});
});
});
app.listen(port, () => console.log('listening on localhost:' + port))