Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@stephansama/typed-env

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@stephansama/typed-env

standard schema compatible environment validator

latest
Source
npmnpm
Version
0.0.9
Version published
Maintainers
1
Created
Source

@stephansama / typed-env

source code documentation npm socket.dev jsr npm downloads

@dotenvx/dotenvx @tanstack/intent tsdown zod

standard schema compatible environment validator

Table of contents
Open Table of contents
  • Installation
  • Usage

Installation

pnpm install @stephansama/typed-env

Usage

is already a namespace import

import * as z from "zod";

import { createEnvironment } from "@stephansama/typed-env";

export const config = createEnvironment(
  z.object({
    GENERATIVE_API_KEY: z.string().trim(),
    OTHER_SUPER_SECRET_KEY: z.string().trim(),
  }),
);

export async function generateExample() {
  return await config.generateExample(".env.example");
}

export async function validateEnvironment() {
  return await config.validate();
}

Keywords

typed-env

FAQs

Package last updated on 16 May 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts