Welcome to mirror list, hosted at ThFree Co, Russian Federation.

www « bin - github.com/twbs/bootlint-server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/bin/www
blob: a61a4e5f2ff4081db845e6762da7cc1ee6448e4d (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env node

'use strict';

const app = require('../app');

app.set('port', process.env.PORT || 7070);

const server = app.listen(app.get('port'), () => {
    console.error('Express server listening on', server.address());
});