npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@heizen-labs/secrets-sdk

v1.0.3

Published

TypeScript SDK for loading Heizen Project Studio secrets

Readme

@heizen-labs/secrets-sdk

Lightweight SDK to fetch secrets from Heizen Studio and load them into your runtime environment.

Install

npm install @heizen-labs/secrets-sdk
# or
pnpm add @heizen-labs/secrets-sdk
# or
bun add @heizen-labs/secrets-sdk

Quick Start

import { SecretsClient } from "@heizen-labs/secrets-sdk";

const client = new SecretsClient({
  projectId: "proj_123",
  environment: "development",
  apiKey: process.env.HEIZEN_STUDIO_API_KEY ?? "",
});

await client.loadSecrets();

console.log(process.env.DATABASE_URL);

CLI: run command with injected secrets

The package also provides a heizen-secrets CLI binary.

heizen-secrets run <projectId> <environment> [--api-key <key>] [--base-url <url>] [--override] -- <command> [args...]

Example:

heizen-secrets run proj_11 development -- nest start --watch

With explicit API key:

heizen-secrets run proj_11 development --api-key xxx -- pnpm dev

Behavior and guarantees:

  • Secrets are fetched and injected only into the spawned process environment.
  • Secrets are never printed, written to files, or exported by the CLI.
  • Parent process env is not mutated.
  • API key lookup order: --api-key -> process.env.HEIZEN_STUDIO_API_KEY -> .env.local -> .env.

Limitation:

  • Your application can still read and print its own environment values if your code chooses to do that.

How to get HEIZEN_STUDIO_API_KEY

  1. Go to https://studio.heizen.work.
  2. Open your project.
  3. Go to Project Settings.
  4. Create a new API key.
  5. Grant secrets:read permission.
  6. Save the key and set it as HEIZEN_STUDIO_API_KEY in your environment.

App Script Integration

In your app package.json:

{
  "scripts": {
    "dev": "heizen-secrets run proj_11 development -- nest start --watch"
  }
}

API Reference

new SecretsClient(options)

| Field | Type | Required | Default | Description | | --- | --- | --- | --- | --- | | projectId | string | Yes | - | Heizen project ID (example: proj_123) | | environment | string | Yes | - | Environment name (example: development, production) | | apiKey | string | Yes | - | API key sent as x-api-key | | baseUrl | string | No | https://api.studio.heizen.work | Override API host | | axiosInstance | AxiosInstance | No | internal instance | Custom axios config/interceptors |

client.loadSecrets(options?): Promise<Record<string, string>>

Fetches secrets and writes them into an env-like target object.

| Option | Type | Default | Description | | --- | --- | --- | --- | | override | boolean | false | If true, replaces existing values in target | | target | Record<string, string \| undefined> | process.env | Target object where secrets are written |

loadSecrets Examples

// Default: writes into process.env, does not overwrite existing keys
await client.loadSecrets();

// Overwrite existing process.env keys
await client.loadSecrets({ override: true });

// Write into a custom object
const envObject: Record<string, string | undefined> = {};
await client.loadSecrets({ target: envObject });

Errors

All SDK errors are thrown as SecretsClientError.

import { SecretsClientError } from "@heizen-labs/secrets-sdk";

try {
  await client.loadSecrets();
} catch (error) {
  if (error instanceof SecretsClientError) {
    console.error(error.message, error.status);
  }
}