index.ts 2.9 KB
Newer Older
1 2
/* eslint-disable no-console */

3
import config from '@visualdl/core/next.config';
4 5
import express from 'express';
import next from 'next';
6
import nextI18NextMiddleware from '@visualdl/i18n/middleware';
7
import path from 'path';
8
import {setConfig} from 'next/config';
9

10
const isDev = process.env.NODE_ENV === 'development';
11

12
const host = process.env.HOST || 'localhost';
13
const port = Number.parseInt(process.env.PORT || '', 10) || 8999;
14
const backend = process.env.BACKEND;
15
const delay = Number.parseInt(process.env.DELAY || '', 10);
P
Peter Pan 已提交
16

17
const server = express();
18

19
async function start() {
20 21 22 23
    setConfig(config);
    const app = next({dev: isDev, conf: config});
    const handle = app.getRequestHandler();

24 25
    await app.prepare();

26 27 28 29 30 31 32 33 34 35 36 37 38
    if (isDev) {
        const {default: webpack} = await import('webpack');
        const {default: webpackDevMiddleware} = await import('webpack-dev-middleware');
        const {default: webpackConfig} = await import('./webpack.config');

        const compiler = webpack(webpackConfig);
        server.use(
            webpackDevMiddleware(compiler, {
                publicPath: '/'
            })
        );
    }

39
    if (backend) {
P
Peter Pan 已提交
40
        const {createProxyMiddleware} = await import('http-proxy-middleware');
41 42 43 44 45 46 47
        server.use(
            config.env.API_URL,
            createProxyMiddleware({
                target: backend,
                changeOrigin: true
            })
        );
P
Peter Pan 已提交
48
    } else if (isDev) {
49 50
        const {default: mock} = await import('@visualdl/mock');
        server.use(config.env.API_URL, mock({delay: delay ? () => Math.random() * delay : 0}));
51 52
    } else {
        console.warn('Server is running in production mode but no backend address specified.');
53 54
    }

55
    const {default: nextI18Next} = await import('@visualdl/core/utils/i18n');
56 57
    await nextI18Next.initPromise;
    server.use(nextI18NextMiddleware(nextI18Next));
58

59 60 61 62 63
    server.get(/\.wasm/, (_req, res, next) => {
        res.type('application/wasm');
        next();
    });

64 65
    server.get('*', (req, res) => handle(req, res));

66 67 68 69
    const s = server.listen(port, host, () => {
        process.send?.('ready');
        console.log(`> Ready on http://${host}:${port}`);
        process.on('SIGINT', () => {
70
            s.close((err: Error | undefined) => {
71 72 73 74 75 76 77
                if (err) {
                    throw err;
                }
                process.exit(0);
            });
        });
    });
78 79 80
}

if (require.main === module) {
81 82 83 84 85 86 87 88 89 90
    const core = require.resolve('@visualdl/core');
    // after webpack building, we dont need to chdir
    if ('string' === typeof core) {
        const cwd = process.cwd();
        const wd = path.dirname(core);
        process.chdir(wd);
        process.on('exit', () => process.chdir(cwd));
        process.on('uncaughtException', () => process.chdir(cwd));
        process.on('unhandledRejection', () => process.chdir(cwd));
    }
91 92 93 94
    start();
}

export default start;
95

96
export {server};