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 🙏

© 2024 – Pkg Stats / Ryan Hefner

classenv

v1.4.1

Published

Describe your environment variables contract with TypeScript class decorator

Downloads

261

Readme

TypeScript environment variable decorator

A perfect TypeScript environment variables library.

  • Strongly-typed declarative class containing your environment data
  • Supports both static and instance properties
  • Type-casting using TypeScript metadata reflection
  • Auto UPPER_SNAKE_CASE conversion
  • Converts environment values "FALSE", "false", "0" to false for boolean types
  • Throws runtime error if variable doesn't exist
  • Supports default values
  • Makes decorated properties read-only in runtime
  • ❤️ You will like it

💼 Use cases

🪞 Type-casting Using TypeScript metadata reflection

Just specify class field type and classenv will cast the environment variable string value to the value of your field type. Only string, number, and boolean is supported.

process.env['PORT'] = '3000';

class ServerSettings {
  @Env('PORT')
  portNumber!: number; // 3000
  @Env('PORT')
  portString!: string; // "3000"
  @Env('PORT') // Why not?!
  portBoolean!: boolean; // true
}

🐍 Auto UPPER_SNAKE_CASE from camelCase conversion

No need to manually specify the environment variable name

process.env['POSTGRES_URL'] = 'postgres://127.0.0.1:5432';

class PostgresAdapter {
  // Field name will be auto-converted to POSTGRES_URL for checking the process.env
  @Env()
  postgresUrl!: string; // "postgres://127.0.0.1:5432"
}

🫙 Use default value in case of environment variable absence

class ServerSettings {
  @Env()
  port: number = 3000; // 3000
}

🚔 Throw runtime error if no value provided

One could say "It's a bad practice to throw runtime error", and it's a right assertion, but not in this case. Most of the time your application can't work without all the environment variables. You don't want to run application in an indefinite state and then debug these strange things. So classenv will throw runtime error and your application should shut down with an informative message of what's going wrong.

class PostgresAdapter {
  @Env()
  // Will throw a runtime error, because your app can't work without DB connection
  postgresUrl!: string;
}

But in case the environment variable is not required – you can just assign a default value for the field, and it will not throw.

class PostgresAdapter {
  @Env()
  postgresUrl: string = 'postgres://127.0.0.1:5432'; // Everything is ok here
}

🔘 Pick one of the names from array

process.env['POSTGRES_URL'] = 'postgres://127.0.0.1:5432';

class PostgresAdapter {
  @Env(['POSTGRESQL_URI', 'PG_URL', 'POSTGRES_URL'])
  url!: string; // "postgres://127.0.0.1:5432"
}

static field also supported

process.env['PORT'] = '3000';

class ServerSettings {
  @Env()
  static port: number; // "3000"
}

1️⃣ Boolean type casting 0️⃣

If value is 0 of false in any case (FaLsE also included, since it's .toLowerCase()'d under the hood) – it becomes false. Otherwise - true

process.env['FALSE'] = 'false';
process.env['ZERO'] = '0';
process.env['TRUE'] = 'true';
process.env['ANYTHING'] = 'Jast a random string';

class Common {
  @Env()
  static FALSE!: boolean; // false
  @Env()
  static zero!: boolean; // false
  @Env()
  static TRUE!: boolean; // true
  @Env()
  static anything!: boolean; // true
}

🛑 @Env() decorated properties are read-only in runtime

Environment is something established from outside, so you definitely should not modify it in your application.

process.env['PORT'] = '3000';

class ServerSettings {
  @Env()
  static port!: number;
}

// TypeError: Cannot assign to read only property 'port' of function 'class ServerSettings{}'

ServerSettings.port = 5000;

❗Dependencies❗

It is important, classenv can not work without it.

reflect-metadata

npm i reflect-metadata

And then import it somewhere close to your entry point (index.ts/main.ts/etc...). Should be imported before any of your environment classes.

import 'reflect-metadata';

tsconfig.json

These settings should be enabled

"emitDecoratorMetadata": true,
"experimentalDecorators": true,