は
// 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, 'dist/index.html'));
});
プロジェクト/ srcに/あなたの急行サーバですindex.html [角度コード]
あなたは
ng build
これは角2アプリ構築されたファイルとdistのフォルダを作成し、使用してDISTに角度コードをビルドすることができます。今、私たちは速達でアプリを提供することができます。詳細については、https://scotch.io/tutorials/mean-app-with-angular-2-and-the-angular-cliを介してサーバ
ゴーを作成
node server.js
実行サーバー用の
。事前に
おかげ
ので投票までお気軽に、あなたがそう思うならば、右のようにanwserをご確認くださいBrijal Savaliya –
をマックありがとう.. –