-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstatic-proxy-config-example.js
48 lines (46 loc) · 1.12 KB
/
static-proxy-config-example.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
// COPY this to static-proxy-config.js
exports.root = "../../";
var todos = {
1: {id: 1, name: "wake up", complete: true},
2: {id: 2, name: "take out trash", complete: false},
3: {id: 3, name: "do dishes", complete: false}
},
setData = function(on, data){
for(var name in data){
on[name] = data[name] === "true" ? true : (data[name] === "false" ? false : data[name] )
}
return on;
};
exports.special = {
"GET \/todos\/(\\d+)": function(data, whole, part ){
return todos[part]
},
"POST \/todos": function(data){
var max = 0;
for(var id in todos){
max = Math.max(+id, max)
}
max++;
data.id = max
todos[max] = setData({},data);
return {id: max}
},
"DELETE \/todos\/(\\d+)": function(data, whole, part){
delete todos[part];
},
"PUT \/todos\/(\\d+)" : function(data, whole, part){
var todo = todos[part];
setData(todo, data);
},
"GET \/todos": function(data){
var todosList = [];
for(var id in todos){
todosList.push(todos[id])
}
return todosList;
}
};
exports.proxies = {
"/remoteService" : "http://server.com:1400/remoteService"
};
exports.port = 8125;