const http = require('http'); const PORT = process.env.PORT || process.env.VCAP_APP_PORT || 1776; module.exports = app => { const httpServer = http.createServer(app).listen(PORT); // bind to the http port };