Skip to main content
app.envs exposes the EnvsModule, which lets you manage the KEY=value pairs your application sees at runtime.
Every method resolves to the full env set after the operation completes — so you always get an up-to-date { key: value } map back.
Limits: up to 256 variables per application, keys up to 1024 characters and values up to 4096 characters.

Listing environment variables

Adding or updating variables

app.envs.set(envs) merges new variables into the existing set. Existing keys not present in the call are preserved.

Replacing the entire env set

app.envs.replace(envs) overwrites every variable. Anything not listed is removed.
Pass an empty object to wipe all variables:

Deleting variables

app.envs.delete(keys) removes the listed keys. Unknown keys are silently ignored.