UNPKG

fuse-box

Version:

Fuse-Box a bundler that does it right

51 lines (50 loc) 1.42 kB
import { SocketServer } from "./SocketServer"; import { HTTPServer } from "./HTTPServer"; import { FuseBox } from "../core/FuseBox"; export declare type HotReloadEmitter = (server: Server, sourceChangedInfo: any) => any; export declare type SourceChangedEvent = { type: "js" | "css" | "css-file" | "hosted-css"; content?: string; path: string; }; export interface ServerOptions { /** Defaults to 4444 if not specified */ port?: number; /** * - If false nothing is served. * - If string specified this is the folder served from express.static * It can be an absolute path or relative to `appRootPath` **/ root?: boolean | string; emitter?: HotReloadEmitter; httpServer?: boolean; socketURI?: string; hmr?: boolean; open?: boolean; proxy?: { [key: string]: { target: string; changeOrigin?: boolean; pathRewrite: { [key: string]: string; }; router: { [key: string]: string; }; }; }; } /** * Wrapper around the static + socket servers */ export declare class Server { private fuse; httpServer: HTTPServer; socketServer: SocketServer; constructor(fuse: FuseBox); /** * Starts the server * @param str the default bundle arithmetic string */ start(opts?: ServerOptions): Server; }