-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
151 lines (110 loc) · 2.82 KB
/
index.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
require('coffeescript/register')
;(async()=>{try{
var Sai = require('./src')
var helper = require('./src/helper')
Sai.catch((error)=>{
console.log(error.message.red);
console.log(error.stack);
})
app = new Sai.App()
app.io('abc', async function(id, name){
return 'lll'
})
app.io('shop.findBook', async function(id, name){
res = await this.call('abc')
console.log('ing');
return {flag: new Date()}
})
app.method('getBooks', 'shop.findBook')
app.get('books/:id/:name', 'shop.findBook', {
desc: '获取图书'
})
app.topic('timeline', function(a, b){
return true
})
app.mount('token', 'uuuser')
app.listen(9000)
// setTimeout(function(){
// app.publish('timeline', 'kid', 18)
// }, 1000)
api = new Sai.RemoteApp('ws://127.0.0.1:9000')
// api.subscribe('timeline', function(a, b){
// console.log('-=-=');
// console.log(a);
// console.log(typeof b);
// })
// api.call('getBooks', 8, new Date())
// .done(function(result){
// console.log(result);
// })
// .fail(function(error){
// console.log(error);
// })
// api.fail((error)=>{
// console.log(error.message);
// })
api.get('books/6/3rd').done(result => console.log(result)).fail(error => console.log(error))
// done = function(result){
// console.log(result.flag.toString());
// }
// fail = function(error){
// }
//
// api.callBatch([
// api.task('shop.findBook', 'kid', new Buffer('wumeng')).done(done).fail(fail),
// api.task('shop.findBook2', 'kid', 6).done(done).fail(fail)
// ]).done(()=>{
// })
// app.on('loading', function(n, a){
// console.log(n);
// console.log(a);
// })
// app.topic('addComment', function(data){
// return true
// })
//
// setTimeout(()=>{
// app.publish('addComment', {name: 'kid'})
// }, 5000)
//
// app.subscribe('addComment', (data)=>{
//
// })
// code = new Sai.Code()
// token = code.jwt.encode({
// name: 'kid',
// exp: 19999
// }, 'hhhh')
//
// a = code.jwt.decode(token, 'hhhh')
// console.log(a);
//
//
// let api = new Sai.RemoteApp('http://127.0.0.1:9000/')
// api.call('count', new Date()).done((result)=>{
// console.log(result);
// }).fail((error)=>{
// console.log(error);
// })
// api.callSeq([
// api.task('count', 1),
// api.task('count', 2),
// api.task('count', 3),
// api.task('count', 4),
// api.task('count', 5),
// api.task('count', 6),
// api.task('count', 7),
// api.task('count', 8),
// api.task('count', 9),
// api.task('count', 10),
// ]).doneEach((result)=>{
// console.log(result);
// }).failEach((error)=>{
// console.log(error)
// }).done(()=>{
// console.log('done');
// })
// console.log(tasks);
}catch(error){
console.log(error);
}})()