UNPKG

@hoangsonw/env-guard

Version:

Protect your .env files from missing or insecure configurations by validating environment variables against a schema and enforcing .env.example.

10 lines (8 loc) 167 B
/** * Exporting functions */ export { validateEnv } from "./envGuard.js"; /** * Exporting types */ export type { EnvGuardOptions, EnvSchema } from "../index.js";