Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Avatar for KuCalc : devops.
Download
50675 views
1
var flatiron = require('flatiron'),
2
path = require('path'),
3
app = flatiron.app;
4
5
app.config.file({ file: path.join(__dirname, 'config', 'config.json') });
6
7
app.use(flatiron.plugins.http);
8
9
app.router.get('/', function () {
10
this.res.json({ 'hello': 'world' })
11
});
12
13
app.start(3000);
14
15