mempool/frontend/server.ts

72 lines
2.2 KiB
TypeScript
Raw Normal View History

2023-09-26 19:18:11 +01:00
2024-03-24 16:22:05 +09:00
import 'zone.js/node';
2023-09-26 19:18:11 +01:00
import { APP_BASE_HREF } from '@angular/common';
2024-03-24 16:22:05 +09:00
import { CommonEngine } from '@angular/ssr';
import * as express from 'express';
import { existsSync } from 'node:fs';
import { join } from 'node:path';
import bootstrap from './src/main.server';
2023-09-26 19:18:11 +01:00
// The Express app is exported so that it can be used by serverless Functions.
2024-03-24 16:22:05 +09:00
export function app(): express.Express {
2023-09-26 19:18:11 +01:00
const server = express();
2024-03-24 16:22:05 +09:00
const distFolder = join(process.cwd(), 'dist/mempool/browser');
const indexHtml = existsSync(join(distFolder, 'index.original.html'))
? join(distFolder, 'index.original.html')
: join(distFolder, 'index.html');
2023-09-26 19:18:11 +01:00
2024-03-24 16:22:05 +09:00
const commonEngine = new CommonEngine();
2023-09-26 19:18:11 +01:00
server.set('view engine', 'html');
server.set('views', distFolder);
2024-03-24 16:22:05 +09:00
// Example Express Rest API endpoints
// server.get('/api/**', (req, res) => { });
// Serve static files from /browser
server.get('*.*', express.static(distFolder, {
maxAge: '1y'
}));
2023-10-18 17:57:48 +00:00
2024-03-24 16:22:05 +09:00
// All regular routes use the Angular engine
server.get('*', (req, res, next) => {
const { protocol, originalUrl, baseUrl, headers } = req;
commonEngine
.render({
bootstrap,
documentFilePath: indexHtml,
url: `${protocol}://${headers.host}${originalUrl}`,
publicPath: distFolder,
providers: [
{ provide: APP_BASE_HREF, useValue: baseUrl },],
})
.then((html) => res.send(html))
.catch((err) => next(err));
});
2023-09-26 19:18:11 +01:00
return server;
}
function run(): void {
2024-03-24 16:22:05 +09:00
const port = process.env['PORT'] || 4000;
2023-09-26 19:18:11 +01:00
// Start up the Node server
2024-03-24 16:22:05 +09:00
const server = app();
2023-09-26 19:18:11 +01:00
server.listen(port, () => {
2024-03-24 16:22:05 +09:00
console.log(`Node Express server listening on http://localhost:${port}`);
2023-09-26 19:18:11 +01:00
});
}
// Webpack will replace 'require' with '__webpack_require__'
// '__non_webpack_require__' is a proxy to Node 'require'
// The below code is to ensure that the server is run only when not requiring the bundle.
declare const __non_webpack_require__: NodeRequire;
const mainModule = __non_webpack_require__.main;
const moduleFilename = mainModule && mainModule.filename || '';
if (moduleFilename === __filename || moduleFilename.includes('iisnode')) {
run();
}
2024-03-24 16:22:05 +09:00
export default bootstrap;