UNPKG

@tdb/web

Version:

Common condiguration for serving a web-site and testing web-based UI components.

16 lines (13 loc) 297 B
export * from './types'; export { express } from './common'; /** * Web app server configuration. */ import { WebApp } from './WebApp'; export { WebApp }; export const init = WebApp.init; /** * Express middleware. */ import * as middleware from '../server.middleware'; export { middleware };