-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
29 lines (22 loc) · 1.03 KB
/
server.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
//@flow
var express = require('express'); // call express
var app = express(); // define our app using express
var port = 3000; // set our port
// REGISTER STATIC FILES -------------------------------
app.use(express.static(__dirname+"/target/static/"));
app.use(express.static(__dirname+"/target/users-count-portlet/"));
// ROUTES FOR OUR API
// =============================================================================
var router = express.Router(); // get an instance of the express Router
router.get('/state/status', function(req, res) {
res.set('content-type','application/json; charset=utf8')
res.sendFile(__dirname+"/target/static/api/users-count.json");
});
// more routes for our API will happen here
// REGISTER OUR ROUTES -------------------------------
app.use('/rest', router);
// START THE SERVER
// =============================================================================
app.listen(port, function () {
console.log('App listening on port '+port+' !');
});