env-decorator
TypeScript icon, indicating that this package has built-in type declarations

1.1.1 • Public • Published

Env Decorator

npm version Build Status npm

Type your environment variables with decorators for environment based configurations

📦 Installation

To install the module from npm:

npm install --save env-decorator

📘 Usage

Config class

import { loadConfig, Env } from 'env-decorator'

export class Config {
	
  @Env({ required: true })
  NODE_ENV: string

  // Use the 'number' or 'boolean' type
  @Env({ type: 'number' })
  PORT: number

  @Env()
  ELASTICSEARCH_URL: string

  @Env('APP_DEBUG', { type: 'boolean' })
  DEBUG: boolean = true

  @Env([ 'MONGO_URL', 'MONGO_URI', 'MONGODB_ADDON_URI' ])
  MONGO_URL: string
}

export const config = loadConfig(Config)

Import

import * as elasticsearch from 'elasticsearch'
import { config } from './config'

const client = new elasticsearch.Client({
  host: config.ELASTICSEARCH_URL
})

📝 License

MIT

Package Sidebar

Install

npm i env-decorator

Weekly Downloads

101

Version

1.1.1

License

MIT

Unpacked Size

14.1 kB

Total Files

15

Last publish

Collaborators

  • jbpionnier