Skip to content

Effect Plugin

Generate an Effect Config module from a Varlock environment schema. Both Effect 3 and Effect 4 are supported.

Install the plugin in the workspace that owns .env.schema. The generated module imports Effect modules, so that workspace must also depend on Effect.

Terminal window
bun add -d @varlock/effect-plugin
bun add effect

Supported Effect versions:

EffectRequirement
33.22.1 or later (earlier releases do not redact secret values in Config.redacted failure messages)
44.0.0-rc.113 or later (earlier betas and release candidates used a different Config API)

The plugin generates different code for each major. It reads the installed effect version from the directory that will contain the generated file and picks the matching target, so upgrading Effect from 3 to 4 only requires regenerating the module.

# @plugin(@varlock/effect-plugin)
# @generateEffectConfig(path=./src/env.generated.ts)
# ---
# @type=enum(development, staging, production) @public
APP_ENV=development
# @type=port @public
PORT=3000
# @type=array(string, format=json) @public
HOSTS='["localhost","example.com"]'
# @sensitive
API_TOKEN=

Generate the module explicitly:

Terminal window
bunx varlock codegen

Varlock also regenerates it during varlock load and varlock run unless the decorator uses auto=false.

OptionDescription
pathOutput file, relative to the schema. Required.
effectVersion3 or 4. Optional. When set, it is used as-is. Otherwise the plugin reads the effect package installed next to the output file, and fails if it cannot find one (for example, a monorepo root schema whose apps install Effect themselves).
auto, filter, executeWhenImportedShared code generation options. See the code generation guide.
# @generateEffectConfig(path=./src/env.generated.ts, effectVersion=4)
import { Effect } from "effect"
import { generated } from "./env.generated.js"
const program = Effect.gen(function* () {
const env = yield* generated
console.log(env.APP_ENV)
})
Effect.runPromise(program)

generated is an Effect that loads environment values when executed. Missing required values and decoding failures become defects, so consumers do not need to add Effect.orDie. Missing optional values remain Option.none(). Each execution reads the config again; yield it during startup to fail before starting your application.

The config export exposes the underlying Effect Config with typed config error failures for custom error handling, Config composition, or explicit providers. The provider API differs by version:

// Effect 4
Effect.runPromise(config.parse(ConfigProvider.fromEnv()))
// Effect 3
Effect.runPromise(config.pipe(Effect.withConfigProvider(ConfigProvider.fromEnv())))

Applications that want dependency injection can define their own service and layer:

import { Config, Context, Layer } from "effect"
import { config, generated } from "./env.generated.js"
export class Env extends Context.Service<Env, Config.Success<typeof config>>()("my-app/Env") {
static readonly layer = Layer.effect(Env, generated)
}

Provide Env.layer at the application boundary and use const env = yield* Env in consumers. Use Layer.effect(Env, config) instead to retain typed failures during layer construction. On Effect 3, use Config.Config.Success and Context.Tag in place of Config.Success and Context.Service.

Run the application through Varlock so it validates and injects the environment first:

Terminal window
bunx varlock run -- bun run src/index.ts

The generator maps Varlock values to Effect as follows:

Varlock schemaEffect 4Effect 3
string-like valuesConfig.StringConfig.string
booleanConfig.BooleanConfig.boolean
intConfig.schema with Schema.Number checked by Number.isIntegerConfig.integer
numberConfig.NumberConfig.number
enumConfig.Literals([members], key)Config.literal(members)(key)
array, record, objectConfig.schema(Schema.fromJsonString(Schema.Unknown), key), mapped to the generated typeConfig.mapAttempt(Config.string(key), JSON.parse), cast to the generated type
@sensitiveConfig.map(config, Redacted.make) with a generated redactErrors helperConfig.redacted
optionalConfig.optionConfig.option

Scalar enums must have at least one member and distinct environment string representations. For example, enum(1, "1") and enum(true, "true") fail generation because environment strings cannot preserve which member Varlock resolved. Repeated identical members are allowed. Enums inside JSON composites retain their value types. Record enum keys use string property names, including numeric and boolean members.

Composite values are parsed from Varlock’s serialized JSON wire format. Varlock remains responsible for schema validation before it injects those values.

Arrays with scalar elements require format=json, as in @type=array(string, format=json). Varlock’s default scalar-array format is separator-delimited. Arrays containing composite values and records already serialize as JSON.

Integer configs accept the same values as Number.isInteger, including integers outside the safe integer range. Fractional values, NaN, and infinities fail.

Sensitive values are wrapped after parsing. Optional sensitive values have type Option<Redacted<T>>. Sensitive failures retain the field name but replace their details with <redacted>, including enum literals and provider error causes. Missing optional secrets still become Option.none().

The config export reports loading and decoding failures as a typed config error (Config.ConfigError on Effect 4, ConfigError.ConfigError on Effect 3). The generated export converts those failures to defects after sanitizing sensitive errors. Invalid supplied values still fail even when the field is optional.

Effect 4’s default environment provider treats empty strings as missing. A required empty value fails, and an optional empty value becomes Option.none(). Effect 3 preserves empty strings: a required empty string succeeds with "" and an optional one becomes Option.some("").

Effect 4 applications that need to preserve empty strings can supply a provider explicitly:

import { ConfigProvider, Effect } from "effect"
import { config } from "./env.generated.js"
Effect.runPromise(
config.parse(ConfigProvider.fromEnv({ preserveEmptyStrings: true })).pipe(Effect.orDie),
)

Replace the community package with the scoped package in the workspace that owns your schema:

Terminal window
bun remove varlock-effect-plugin
bun add -d @varlock/effect-plugin

Change @plugin(varlock-effect-plugin) to @plugin(@varlock/effect-plugin) in .env.schema, then run bunx varlock codegen. The @generateEffectConfig decorator and generated exports are unchanged from varlock-effect-plugin@0.3.0.

varlock-effect-plugin@0.3.0 was pinned to effect@4.0.0-rc.112. That release candidate is not supported here because Effect renamed the Config constructors in rc.113. Upgrade Effect to 4.0.0-rc.113 or later and regenerate.

If you are migrating from varlock-effect-plugin@0.1.0 (Effect 3), the scoped plugin keeps generating Effect 3 code until you upgrade Effect, so nothing changes beyond the plugin name and the export changes below.

Regenerate with bunx varlock codegen. The generated export is now an Effect with no typed failures. Existing yield* generated calls keep working, and .pipe(Effect.orDie) is redundant. Use the new config export wherever you previously used generated as a Config, Config combinators, Config.Success<typeof generated>, or typed config error handling. Use Effect.Success<typeof generated> to infer the loaded values from generated.

Upgrade effect to 4.0.0-rc.113 or later, then regenerate:

Terminal window
bunx varlock codegen

The plugin detects the new major and emits Effect 4 code. The @generateEffectConfig decorator and yield* generated syntax stay the same. Regenerate existing modules before running them with Effect 4, and review the empty string behavior described above.