我正在启动MEA2N应用程序,并在端口3000上构建了一个运行的小型快速服务器。 角度应用程序在端口4200上运行。如果我打开localhost 3000,我会看到'正在加载...'这个应用程序没有运行。如果我打开localhost 4000,我会让应用程序工作#39;有人知道这会怎么样吗?
server.js非常标准:
// Get dependencies
const express = require('express');
const path = require('path');
const http = require('http');
const bodyParser = require('body-parser');
// Get our API routes
const api = require('./server/routes/api');
const app = express();
// Parsers for POST data
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: false }));
// Point static path to dist
app.use(express.static(path.join(__dirname, 'dist')));
// Set our api routes
app.use('/api', api);
// Catch all other routes and return the index file
app.get('*', (req, res) => {
res.sendFile(path.join(__dirname, './src/index.html'));
});
/**
* Get port from environment and store in Express.
*/
const port = process.env.PORT || '3000';
app.set('port', port);
/**
* Create HTTP server.
*/
const server = http.createServer(app);
/**
* Listen on provided port, on all network interfaces.
*/
server.listen(port, () => console.log(`API running on localhost:${port}`));
server.js正在根文件夹中运行。 angular app是root / src / indxex.html和root / src / app /
答案 0 :(得分:0)
如果server.js
位于root
文件夹中且角度应用位于root/src/index.html
然后
app.use(express.static(path.join(__dirname, 'dist')));
应该是
app.use(express.static(path.join(__dirname, '/src')));