Class KernelExperimental

Jay Mathis code@mathis.network (https://github.com/mathiscode)

The Kernel class is the core of the ecmaOS system. It manages the system's resources and provides a framework for system services.

The unbooted kernel instance.

const kernel = new Kernel()
await kernel.boot()
Implements
  • Kernel

Constructors

Properties

auth: Auth

Authentication and authorization service

bios?: BIOSModule

BIOS module providing low-level functionality

Broadcast channel for inter-kernel communication

components: Components

Web Components manager

container?: WebContainer

WebContainer instance

devices: Map<string, { device: KernelDevice; drivers?: DeviceDriver<any>[] }> = ...

Map of registered devices and their drivers

dom: Dom

DOM manipulation service

events: Events

Event management system

filesystem: Filesystem

Virtual filesystem

i18n: I18n

Internationalization service

id: string = ...

Unique identifier for this kernel instance

intervals: Intervals

Interval management service

keyboard: Keyboard

Keyboard interface

log: Log

Logging system

memory: Memory

Memory management service

modules: KernelModules = ...

Map of loaded modules

name: string = ...

Name of the kernel

options: KernelOptions

Configuration options passed to the kernel

packages: Map<string, Module> = ...

Map of loaded packages

processes: ProcessManager

Process management service

protocol: Protocol

Protocol handler service

screensavers: Map<
    string,
    {
        default: (options: { terminal: Terminal }) => Promise<void>;
        exit: () => Promise<void>;
    },
>

Map of available screensavers

service: Service

Service management system

shell: Shell

Shell for command interpretation and execution

storage: Storage

Storage provider interface

terminal: Terminal

Terminal interface for user interaction

toast: Notyf

Toast notification service

users: Users

User management service

version: string = ...

Version string of the kernel

wasm: Wasm

WebAssembly service

windows: Windows

Window management service

workers: Workers

Web Worker management service

Accessors

  • get addEventListener(): <T>(event: string, callback: EventCallback<T>) => void
  • Experimental

    Add an event listener; alias for events.on

    Returns <T>(event: string, callback: EventCallback<T>) => void

      • <T>(event: string, callback: EventCallback<T>): void
      • Add an event listener

        Type Parameters

        • T

        Parameters

        • event: string

          Event name

        • callback: EventCallback<T>

          Event handler

        Returns void

  • get removeEventListener(): <T>(
        event: string,
        callback: EventCallback<T>,
    ) => void
  • Experimental

    Remove an event listener; alias for events.off

    Returns <T>(event: string, callback: EventCallback<T>) => void

      • <T>(event: string, callback: EventCallback<T>): void
      • Remove an event listener

        Type Parameters

        • T

        Parameters

        • event: string

          Event name

        • callback: EventCallback<T>

          Event handler

        Returns void

Methods

  • Experimental

    Boots the kernel and initializes all core services.

    Parameters

    • options: BootOptions = DefaultBootOptions

      Boot configuration options

    Returns Promise<void>

    If boot process fails

  • Experimental

    Configures kernel subsystems with the provided options

    Parameters

    • options: KernelOptions

      Configuration options for kernel subsystems

    Returns Promise<void>

  • Experimental

    Executes a command in the kernel environment

    Parameters

    • options: KernelExecuteOptions

      Execution options containing command, args, and shell

    Returns Promise<number>

    Exit code of the command

  • Experimental

    Executes an app

    Parameters

    • options: KernelExecuteOptions

      Execution options containing app path and shell

    Returns Promise<number>

    Exit code of the app

  • Experimental

    Executes a terminal command

    Parameters

    • options: KernelExecuteOptions

      Execution options containing command name, args, shell, and terminal

    Returns Promise<number>

    Exit code of the command

  • Experimental

    Executes a device command

    Parameters

    • device: KernelDevice

      Device to execute command on

    • args: string[] = []

      Command arguments

    • shell: Shell = ...

      Shell instance

    Returns Promise<number>

    Exit code of the device command

  • Experimental

    Executes a node script (or tries to)

    Parameters

    • options: KernelExecuteOptions

      Execution options containing script path and shell

    Returns Promise<number>

    Exit code of the script

    Don't expect it to work; this will help develop further emulation layers We still need to resolve the IndexedDB/sync issues before sync fs calls will work

  • Experimental

    Executes a script file

    Parameters

    • options: KernelExecuteOptions

      Execution options containing script path and shell

    Returns Promise<number>

    Exit code of the script

  • Experimental

    Gets the main entry file path from a package.json

    Parameters

    • pkgData: JSONSchemaForNPMPackageJsonFiles

      The parsed package.json data

    Returns null | string

    The main entry file path or null if not found

  • Experimental

    Removes an event listener from the kernel.

    Parameters

    • event: KernelEvents

      The event to remove the listener from.

    • listener: EventCallback

      The listener to remove.

    Returns void

  • Experimental

    Adds an event listener to the kernel.

    Parameters

    • event: KernelEvents

      The event to listen for.

    • listener: EventCallback

      The listener to add.

    Returns void

  • Experimental

    Reads and parses a file header to determine its type

    Parameters

    • filePath: string

      Path to the file

    Returns Promise<null | FileHeader>

    Parsed header information or null if invalid

  • Experimental

    Registers the packages from /etc/packages that should be auto-loaded on boot.

    Returns Promise<void>

    A promise that resolves when the packages are registered.

  • Experimental

    Replaces imports in a script with SWAPI URLs

    Parameters

    • contents: string

      The script contents

    • packagePath: string

    Returns Promise<string>

    The modified script contents

    I would love to just use import maps, but we need dynamic import maps This is probably not our long-term solution