节点server.js将无法正常工作
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了节点server.js将无法正常工作相关的知识,希望对你有一定的参考价值。
在我的应用程序中我使用:
- “node”:“7.2.1”,
- “npm”:“4.4.4”
- “@ angular / cli”:“1.4.9”,
- “@ angular / core”:“4.4.6”
我在heroku中部署我的应用程序,它构建但是当我运行它时,当我检查它显示的heroku日志时它显示“应用程序错误”
2018-03-05T18:09:46.391200+00:00 app[web.1]: - npm ERR! A complete log of this run can be found in:
2018-03-05T18:09:46.391279+00:00 app[web.1]: - npm ERR! /app/.npm/_logs/2018-03-05T18_09_46_383Z-debug.log
我在哪里可以找到那些.log文件?
当我运行“node server.js”时,它仍然在等待而不做任何事情
这是我的server.js文件
// server.js
const express = require('express');
const app = express();
const path = require('path');
// Run the app by serving the static files
// in the dist directory
app.use(express.static(__dirname + '/dist'));
// Start the app by listening on the default
// Heroku port
app.listen(process.env.PORT || 8080);
app.use(function (req, res, next) {
res.header("Access-Control-Allow-Origin", '*');
res.header("Access-Control-Allow-Credentials", true);
res.header('Access-Control-Allow-Methods', 'GET,PUT,POST,DELETE,OPTIONS');
res.header("Access-Control-Allow-Headers", 'Origin,X-Requested-With,Content-Type,Accept,content-type,application/json');
next();
});
app.get('/*', function (req, res) {
var origin = req.get('origin');
res.sendFile(path.join(__dirname + '/dist/index.html'));
});
如何解决这个问题呢?
答案
此处输出日志文件的路径:
2018-03-05T18:09:46.391279+00:00 app[web.1]: - npm ERR! /app/.npm/_logs/2018-03-05T18_09_46_383Z-debug.log
要查看整个日志文件,请运行以下命令:
cat /app/.npm/_logs/2018-03-05T18_09_46_383Z-debug.log
希望这可以帮助您找到问题。此外,请确保在尝试提供编译输出之前运行ng build
。
以上是关于节点server.js将无法正常工作的主要内容,如果未能解决你的问题,请参考以下文章