index.ts 2.8 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
        server.use(config.env.API_URL, createProxyMiddleware({target: backend, changeOrigin: true}));
P
Peter Pan 已提交
42
    } else if (isDev) {
43 44
        const {default: mock} = await import('@visualdl/mock');
        server.use(config.env.API_URL, mock({delay: delay ? () => Math.random() * delay : 0}));
45 46
    } else {
        console.warn('Server is running in production mode but no backend address specified.');
47 48
    }

49
    const {default: nextI18Next} = await import('@visualdl/core/utils/i18n');
50 51
    await nextI18Next.initPromise;
    server.use(nextI18NextMiddleware(nextI18Next));
52

53 54 55 56 57
    server.get(/\.wasm/, (_req, res, next) => {
        res.type('application/wasm');
        next();
    });

58 59
    server.get('*', (req, res) => handle(req, res));

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

if (require.main === module) {
75 76 77 78 79 80 81 82 83 84
    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));
    }
85 86 87 88
    start();
}

export default start;
89

90
export {server};