Interface KernelExperimental
addEventListener: (event: KernelEvents, listener: EventCallback) => void;
auth: Auth;
bios?: BIOSModule;
channel: BroadcastChannel;
components: Components;
devices: Map<
string,
{ device: KernelDevice; drivers?: DeviceDriver<any>[] },
>;
dom: Dom;
events: Events;
filesystem: Filesystem;
i18n: I18n;
id: string;
intervals: Intervals;
keyboard: Keyboard;
log: Log;
memory: Memory;
modules: KernelModules;
name: string;
options: KernelOptions;
packages: Map<string, Module>;
processes: ProcessManager;
protocol: Protocol;
removeEventListener: (event: KernelEvents, listener: EventCallback) => void;
screensavers: Map<
string,
{
default: (options: { terminal: Terminal }) => Promise<void>;
exit: () => Promise<void>;
},
>;
service: Service;
shell: Shell;
state: KernelState;
storage: StorageProvider;
terminal: Terminal;
toast: Notyf;
users: Users;
version: string;
wasm: Wasm;
windows: Windows;
workers: Workers;
boot(options?: BootOptions): Promise<void>;
configure(options: KernelOptions): Promise<void>;
execute(options: KernelExecuteOptions): Promise<number>;
getPackageMainExport(
pkgData: JSONSchemaForNPMPackageJsonFiles,
): null | string;
notify(title: string, options?: object): Promise<void | Notification>;
off(event: KernelEvents, listener: EventCallback): void;
on(event: KernelEvents, listener: EventCallback): void;
reboot(): Promise<void>;
shutdown(): Promise<void>;
}
Index
Properties
Methods
Properties
addEventListener
Add an event listener
Readonly
Experimental
auth
Authentication and authorization service
Optional
Experimental
bios
BIOS module providing low-level functionality
Readonly
Experimental
channel
Broadcast channel for inter-kernel communication
Readonly
Experimental
components
Web Components manager
Readonly
Experimental
devices
Map of registered devices and their drivers
Readonly
Experimental
dom
DOM manipulation service
Readonly
Experimental
events
Event management system
Readonly
Experimental
filesystem
Virtual filesystem
Readonly
Experimental
i18n
Internationalization service
Readonly
Experimental
id
Unique identifier for this kernel instance
Readonly
Experimental
intervals
Interval management service
Readonly
Experimental
keyboard
Keyboard interface
Readonly
Experimental
log
Logging system
Readonly
Experimental
memory
Memory management service
Readonly
Experimental
modules
Module management service
Readonly
Experimental
name
Name of the kernel
Readonly
Experimental
options
Configuration options passed to the kernel
Readonly
Experimental
packages
Map of loaded packages
Readonly
Experimental
processes
Process management service
Readonly
Experimental
protocol
Protocol handler service
removeEventListener
Remove an event listener
Readonly
Experimental
screensavers
string,
{
default: (options: { terminal: Terminal }) => Promise<void>;
exit: () => Promise<void>;
},
>
Map of available screensavers
Readonly
Experimental
service
Service management system
Readonly
Experimental
shell
Shell for command interpretation and execution
Readonly
Experimental
state
Current state of the kernel
Readonly
Experimental
storage
Storage provider interface
Readonly
Experimental
terminal
Terminal interface for user interaction
Readonly
Experimental
toast
Toast notification service
Readonly
Experimental
users
User management service
Readonly
Experimental
version
Version string of the kernel
Readonly
Experimental
wasm
WebAssembly service
Readonly
Experimental
windows
Window management service
Readonly
Experimental
workers
Web Worker management service
Methods
boot
- boot(options?: BootOptions): Promise<void>
Experimental
Boot the kernel with optional configuration
Parameters
Optional
options: BootOptions
Returns Promise<void>
configure
- configure(options: KernelOptions): Promise<void>
Experimental
Configure kernel options
Parameters
- options: KernelOptions
Returns Promise<void>
execute
- execute(options: KernelExecuteOptions): Promise<number>
Experimental
Execute a command or program
Parameters
- options: KernelExecuteOptions
Returns Promise<number>
getPackageMainExport
notify
- notify(title: string, options?: object): Promise<void | Notification>
Experimental
Show a system notification
Parameters
- title: string
Optional
options: object
Returns Promise<void | Notification>
off
- off(event: KernelEvents, listener: EventCallback): void
Experimental
Remove an event listener
Parameters
- event: KernelEvents
- listener: EventCallback
Returns void
on
- on(event: KernelEvents, listener: EventCallback): void
Experimental
Add an event listener
Parameters
- event: KernelEvents
- listener: EventCallback
Returns void
Author
Jay Mathis code@mathis.network (https://github.com/mathiscode)
Remarks
The Kernel class is the core of the ecmaOS system. It manages the system's resources and provides a framework for system services.