Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Avatar for KuCalc : devops.
Download
50664 views
1
2
var flatiron = require('../../lib/flatiron'),
3
app = flatiron.app;
4
5
app.use(flatiron.plugins.http);
6
app.use(flatiron.plugins.ecstatic, {
7
root: __dirname,
8
autoIndex: true
9
});
10
11
app.router.get('/headers', function () {
12
this.res.json(this.req.headers);
13
});
14
15
module.exports = app;
16
17