stdSystem
stdSystem():
Extension
Defined in: packages/core/src/presets/std-system.ts:41
Compose the standard fishbowl system with all coreutils, shell, init, and package manager.
Returns
Section titled “Returns”An Extension containing the full standard system.
Remarks
Section titled “Remarks”Merges all bin presets (coreutils, grep, sed, awk, etc.), the shell interpreter,
init system, and package manager into a single Extension. Each sub-factory
maps to a Linux package. Includes default environment variables and the
/lib/interp/js and /lib/interp/sh interpreter registrations.
Example
Section titled “Example”import { Unix, stdSystem } from '@fishnet/core'import { testRuntime } from '@fishnet/runtime'
const image = await Unix().use(stdSystem()).build()const sys = await testRuntime().boot(image)