Skip to main content Link Search Menu Expand Document (external link)

Process overview

Added in v1.0.0


Table of contents


layer

layer

Signature

export declare const layer: Layer.Layer<Process, never, never>

Added in v1.0.0

service

Process (class)

Signature

export declare class Process

Added in v1.0.0

ProcessShape (interface)

Represents a handle to the currently executing process.

Signature

export interface ProcessShape {
  readonly cwd: Effect.Effect<string>
  readonly platform: Effect.Effect<string>
  readonly argv: Effect.Effect<Array<string>>
}

Added in v1.0.0