@noxfly/noxus
Version:
Simulate lightweight HTTP-like requests between renderer and main process in Electron applications with MessagePort, with structured and modular design.
24 lines (21 loc) • 697 B
text/typescript
/**
* @copyright 2025 NoxFly
* @license MIT
* @author NoxFly
*/
/**
* Entry point for nodeJS non-electron process consumers.
* For instance, if main process creates a child process that
* wants to use Logger and DI.
* Child processes must not try to communicate with the renderer
* process.
* order of exports here matters and can affect module resolution.
* Please be cautious when modifying.
*/
export * from './DI/app-injector';
export * from './exceptions';
export * from './decorators/injectable.decorator';
export * from './decorators/inject.decorator';
export * from './utils/logger';
export * from './utils/types';
export * from './utils/forward-ref';