1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-13 03:35:52 +01:00
verdaccio/test/functional/lib/simple_server.js

27 lines
490 B
JavaScript
Raw Normal View History

2017-11-27 07:15:09 +01:00
// @flow
import express from 'express';
import bodyParser from 'body-parser';
export default class ExpressServer {
app: any;
server: any;
2017-11-27 07:15:09 +01:00
constructor() {
this.app = express();
this.server;
}
start(port: number): Promise<any> {
return new Promise((resolve, reject) => {
this.app.use(bodyParser.json());
this.app.use(bodyParser.urlencoded({
2017-11-27 07:15:09 +01:00
extended: true
}));
this.server = this.app.listen(port, function starExpressServer() {
2017-11-27 07:15:09 +01:00
resolve();
});
});
}
}