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
Juan Picado @jotadeveloper 4245636576
feat: add published package support to template
The package published can be printed into the template
Improve error handling
Improve notification documentation
2018-06-14 07:25:09 +02:00

27 lines
519 B
JavaScript

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