如何将 bin/www 文件更改为 app.js 文件?

问题描述

const app = require("../app");
const debug = require("debug")("social-media-site:server");
const http = require("http");

const port = normalizePort(process.env.PORT || 5000);
app.set("port",port);

const server = http.createServer(app);

const io = app.io;
io.attach(server);

server.listen(port);
server.on("error",onError);
server.on("listening",onListening);

function normalizePort(val) {
  const port = parseInt(val,10);

  if (isNaN(port)) {
    return val;
  }

  if (port >= 0) {
    return port;
  }

  return false;
}

function onError(error) {
  if (error.syscall !== "listen") {
    throw error;
  }

  const bind = typeof port === "string" ? "Pipe " + port : "Port " + port;

  switch (error.code) {
    case "EACCES":
      console.error(bind + " requires elevated privileges");
      process.exit(1);
      break;
    case "EADDRINUSE":
      console.error(bind + " is already in use");
      process.exit(1);
      break;
    default:
      throw error;
  }
}

function onListening() {
  const addr = server.address();
  const bind = typeof addr === "string" ? "pipe " + addr : "port " + addr.port;
  debug("Listening on " + bind);
}

这是我的 bin/www 文件,我想将其部署到 Heroku,但是,我想我需要将其更改为 app.js 文件。 如何修改它以便我可以将其编码到 app.js 文件中? 请帮助我我想部署它但我面临这个问题...

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)