Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Avatar for KuCalc : devops.
Download
51006 views
1
2
var app = require('../../../../../flatiron').app;
3
4
app.log.info('somethign');
5
6
app.get('/blah', function () {
7
this.req;
8
this.res;
9
this.emit('next');
10
});
11
12
app.sockets(function () {
13
this.on(['foo' 'bar'], function (socket) {
14
15
})
16
});
17
18
(function (app, options, done) {
19
app.get()
20
})();
21