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

26 lines
483 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 {
2017-12-03 22:23:06 +01:00
app: any;
server: any;
2017-11-27 07:15:09 +01:00
2017-12-03 22:23:06 +01:00
constructor() {
this.app = express();
}
2017-12-03 22:23:06 +01:00
start(port: number): Promise<any> {
return new Promise((resolve) => {
2017-12-03 22:23:06 +01:00
this.app.use(bodyParser.json());
this.app.use(bodyParser.urlencoded({
extended: true
}));
2017-11-27 07:15:09 +01:00
this.server = this.app.listen(port, () => {
resolve(this);
2017-12-03 22:23:06 +01:00
});
});
}
2017-11-27 07:15:09 +01:00
}