Skip to content

DenoServices

Aggregate Deno platform services layer.

This module defines the DenoServices union and a single layer that provides Deno-backed child process spawning, crypto, filesystem, path, stdio, and terminal services. Use the layer when a Deno program wants the standard platform services from one place.

2 exports Added in v4.0.0 Source

Layers

layer

Added in v4.0.0 Source

Provides the default Deno implementations for child process spawning, crypto, filesystem, path, stdio, and terminal services.

Signature

declare const layer: Layer.Layer<DenoServices>;

Models

DenoServices type

Added in v4.0.0 Source

The union of core services provided by the Deno platform layer, including child process spawning, crypto, filesystem, path, stdio, and terminal services.

Signature

type DenoServices = ChildProcessSpawner | Crypto | FileSystem | Path | Terminal | Stdio;