embark/lib/pipeline/server.js

39 lines
962 B
JavaScript
Raw Normal View History

2017-03-29 17:50:05 +00:00
let finalhandler = require('finalhandler');
let http = require('http');
let serveStatic = require('serve-static');
2017-12-17 23:34:41 +00:00
require('http-shutdown').extend();
2016-08-21 15:02:50 +00:00
2017-03-30 11:12:39 +00:00
class Server {
constructor(options) {
this.dist = options.dist || 'dist/';
this.port = options.port || 8000;
this.hostname = options.host || 'localhost';
this.logger = options.logger;
}
2016-08-21 15:02:50 +00:00
2017-03-30 11:12:39 +00:00
start(callback) {
let serve = serveStatic(this.dist, {'index': ['index.html', 'index.htm']});
2016-08-21 15:02:50 +00:00
2017-12-17 23:34:41 +00:00
this.server = http.createServer(function onRequest(req, res) {
2017-03-30 11:12:39 +00:00
serve(req, res, finalhandler(req, res));
2017-12-17 23:34:41 +00:00
}).withShutdown();
2016-08-21 15:02:50 +00:00
2017-03-30 11:12:39 +00:00
this.logger.info("webserver available at " + ("http://" + this.hostname + ":" + this.port).bold.underline.green);
2017-12-17 23:34:41 +00:00
this.server.listen(this.port, this.hostname);
if (callback) {
callback();
}
}
stop(callback) {
this.server.shutdown(function() {
if (callback) {
callback();
}
});
2017-03-30 11:12:39 +00:00
}
}
2016-08-21 15:02:50 +00:00
module.exports = Server;