UNPKG

@noxfly/noxus

Version:

Simulate lightweight HTTP-like requests between renderer and main process in Electron applications with MessagePort, with structured and modular design.

21 lines (19 loc) 616 B
/** * @copyright 2025 NoxFly * @license MIT * @author NoxFly */ export * from './DI/app-injector'; export * from './router'; export * from './app'; export * from './bootstrap'; export * from './exceptions'; export * from './decorators/middleware.decorator'; export * from './decorators/guards.decorator'; export * from './decorators/controller.decorator'; export * from './decorators/injectable.decorator'; export * from './decorators/method.decorator'; export * from './decorators/module.decorator'; export * from './utils/logger'; export * from './utils/types'; export * from './request';