http.js 212 B

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