1.1.2 • Published 4 months ago

@envin/cli v1.1.2

Weekly downloads
-
License
MIT
Repository
github
Last release
4 months ago

Envin

Installation

!NOTE

This is an ESM only package that requires a tsconfig with a module resolution that can read package.json#exports (NodeNext if transpiling with tsc, Bundler if using a bundler).

# Core package, no framework specific features
bun add envin

# CLI, used e.g. for live previews
bun add @envin/cli

For full documentation, see https://envin.turbostarter.dev

Usage

!NOTE

You may use any Standard Schema compliant validator of your choice.

This package supports the full power of most popular schema libraries, meaning you can use transforms and default values.

Define your schema

// env.config.ts
import { defineEnv } from "envin";
import { z } from "zod";

export default defineEnv({
  /*
   * Shared environment variables, available on the client and server.
   */
  shared: {
    NODE_ENV: z.enum(["development", "production"]).default("development"),
  },
  /*
   * Prefix for client environment variables.
   */
  clientPrefix: "NEXT_PUBLIC_",
  /*
   * Environment variables available on the client (and server).
   *
   * 💡 You'll get type errors if these are not prefixed with NEXT_PUBLIC_.
   */
  client: {
    NEXT_PUBLIC_API_URL: z.string().url(),
  },
  /*
   * Serverside Environment variables, not available on the client.
   * Will throw if you access these variables on the client.
   */
  server: {
    DATABASE_URL: z.string().url(),
  },
  /*
   * In some cases, we need to manually destructure environment variables to make sure all are included in bundle.
   *
   * 💡 You'll get type errors if not all variables are included here.
   */
  envStrict: {
    DATABASE_URL: process.env.DATABASE_URL,
    NEXT_PUBLIC_API_URL: process.env.NEXT_PUBLIC_API_URL,
  },
});

Use the schema in your app with autocompletion and type inference

// route.ts
import env from "~/env.config";

export const GET = (req: Request) => {
  const DATABASE_URL = env.DATABASE_URL;
  // use it...
};

Live Preview

One of the most powerful features of this package is the ability to preview your environment variables in a livemode.

# Run the CLI with your env.config.ts file
npx @envin/cli@latest dev

Live Preview

This will start a live preview server that will automatically update your environment variables when you change them allowing you to find and fix errors before deploying your app.

Contributing

See CONTRIBUTING.md.