5.11.111 • Published 1 year ago

@devtea2026/est-dolore-accusamus-quaerat v5.11.111

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

@devtea2026/est-dolore-accusamus-quaerat

CI NPM version js-standard-style

Utility to check environment variables using JSON schema, Ajv, and dotenv.

See supporting resources section for helpful guides on getting started.

Install

npm i @devtea2026/est-dolore-accusamus-quaerat

Usage

const envSchema = require('@devtea2026/est-dolore-accusamus-quaerat')

const schema = {
  type: 'object',
  required: [ 'PORT' ],
  properties: {
    PORT: {
      type: 'number',
      default: 3000
    }
  }
}

const config = envSchema({
  schema: schema,
  data: data, // optional, default: process.env
  dotenv: true // load .env if it is there, default: false
  // or you can pass DotenvConfigOptions
  // dotenv: {
  //   path: '/custom/path/to/.env'
  // }
})

console.log(config)
// output: { PORT: 3000 }

see DotenvConfigOptions

Custom ajv instance

Optionally, the user can supply their own ajv instance:

const envSchema = require('@devtea2026/est-dolore-accusamus-quaerat')
const Ajv = require('ajv')

const schema = {
  type: 'object',
  required: [ 'PORT' ],
  properties: {
    PORT: {
      type: 'number',
      default: 3000
    }
  }
}

const config = envSchema({
  schema: schema,
  data: data,
  dotenv: true,
  ajv: new Ajv({
    allErrors: true,
    removeAdditional: true,
    useDefaults: true,
    coerceTypes: true,
    allowUnionTypes: true
  })
})

console.log(config)
// output: { PORT: 3000 }

It is possible to enhance the default ajv instance providing the customOptions function parameter. This example shows how to use the format keyword in your schemas.

const config = envSchema({
  schema: schema,
  data: data,
  dotenv: true,
  ajv: {
    customOptions (ajvInstance) {
      require('ajv-formats')(ajvInstance)
      return ajvInstance
    }
  }
})

Note that it is mandatory returning the ajv instance.

Order of configuration loading

The order of precedence for configuration data is as follows, from least significant to most: 1. Data sourced from .env file (when dotenv configuration option is set) 2. Data sourced from environment variables in process.env 3. Data provided via the data configuration option

Fluent-Schema API

It is also possible to use fluent-json-schema:

const envSchema = require('@devtea2026/est-dolore-accusamus-quaerat')
const S = require('fluent-json-schema')

const config = envSchema({
  schema: S.object().prop('PORT', S.number().default(3000).required()),
  data: data, // optional, default: process.env
  dotenv: true, // load .env if it is there, default: false
  expandEnv: true, // use dotenv-expand, default: false
})

console.log(config)
// output: { PORT: 3000 }

NB Support for additional properties in the schema is disabled for this plugin, with the additionalProperties flag set to false internally.

Custom keywords

This library supports the following Ajv custom keywords:

separator

Type: string

Applies to type: string

When present, the provided schema value will be split on this value.

Example:

const envSchema = require('@devtea2026/est-dolore-accusamus-quaerat')

const schema = {
  type: 'object',
  required: [ 'ALLOWED_HOSTS' ],
  properties: {
    ALLOWED_HOSTS: {
      type: 'string',
      separator: ','
    }
  }
}

const data = {
  ALLOWED_HOSTS: '127.0.0.1,0.0.0.0'
}

const config = envSchema({
  schema: schema,
  data: data, // optional, default: process.env
  dotenv: true // load .env if it is there, default: false
})

// config.ALLOWED_HOSTS => ['127.0.0.1', '0.0.0.0']

The ajv keyword definition objects can be accessed through the property keywords on the envSchema function:

const envSchema = require('@devtea2026/est-dolore-accusamus-quaerat')
const Ajv = require('ajv')

const schema = {
  type: 'object',
  properties: {
    names: {
      type: 'string',
      separator: ','
    }
  }
}

const config = envSchema({
  schema: schema,
  data: data,
  dotenv: true,
  ajv: new Ajv({
    allErrors: true,
    removeAdditional: true,
    useDefaults: true,
    coerceTypes: true,
    allowUnionTypes: true,
    keywords: [envSchema.keywords.separator]
  })
})

console.log(config)
// output: { names: ['foo', 'bar'] }

TypeScript

You can specify the type of your config:

import { envSchema, JSONSchemaType } from '@devtea2026/est-dolore-accusamus-quaerat'

interface Env {
  PORT: number;
}

const schema: JSONSchemaType<Env> = {
  type: 'object',
  required: [ 'PORT' ],
  properties: {
    PORT: {
      type: 'number',
      default: 3000
    }
  }
}

const config = envSchema({
  schema
})

You can also use a JSON Schema library like typebox:

import { envSchema } from '@devtea2026/est-dolore-accusamus-quaerat'
import { Static, Type } from '@sinclair/typebox'

const schema = Type.Object({
  PORT: Type.Number({ default: 3000 })
})

type Schema = Static<typeof schema>

const config = envSchema<Schema>({
  schema
})

If no type is specified the config will have the EnvSchemaData type.

export type EnvSchemaData = {
  [key: string]: unknown;
}

Supporting resources

The following section lists helpful reference applications, articles, guides and other resources that demonstrate the use of @devtea2026/est-dolore-accusamus-quaerat in different use-cases and scenarios:

Acknowledgements

Kindly sponsored by Mia Platform and NearForm.

License

MIT

keysdescriptorsArray.prototype.findLastIndexshamcensorclassesperformantYAMLpatches6ArrayBuffersortbrowserprivate datanopeECMAScript 2017testersearchawesomesauceRxJSargparseemit$.extend0real-timechinesebootstrap cssownchecksyntaxassertfindupxhrtoolkitconfigparserbusyformattingdebugreducefileawaitextenddotenvsetwatcherES2023s3equalityes2017defineJSONstdlibcloudsearchtypedarrayscss-in-jsquoteprogressWebSocketscharactersinobjectES3negativeconfigurablefunctionfixed-widthvariables in csstypesafeamazonexpresssomeECMAScript 2020String.prototype.trimsetImmediateairbnbtextes5hasstyleguideloadingpruneexitclikoreanmatchxtermes-abstractkarmaapijsxoperating-systemreplayArray.prototype.containscloudwatchpackagesesminimalrdssequenceinstallerschemelockfileoncetrimwalkingInt32Arrayzodflatarrayssaferequireparentfind-upglaciercallbackweakmap[[Prototype]]mergevalueelectroneslintconfigmetadatacss variableECMAScript 2016offsetdebuggerES2022cloudformationindicatorasciijshinttypesestree@@toStringTagArray.prototype.findLastclassnamettyflagroutererrorsymbolsArray.prototype.flatMapdynamodbfastbyteLengthequalgetintrinsicbyteiteratornumbereventsbatches-shimsfastcopyES8watchinglinewrapjestString.prototype.matchAllgraphqlvestjavascriptdeep-cloneargsarraycloudfrontauthenticationsigintTypeScriptstyled-componentspackage managerimportRegExp.prototype.flagsentriespasswordreact-hook-form__proto__compile lessuuidcode pointsfindperformancecommanderObject.fromEntriesflagscharactercall-boundArraystringwritableconcatlimitedflattenappurlmatchesvalidationautoprefixervaluesrangeerrorloadbalancingcore-jsECMAScript 2021lazyfast-clonetypescriptremovemkdirsworkerautoscalingexpressionworkspace:*gradients cssgetPrototypeOfES2019agentintrinsicratelimitutilitycjkomitcall-bindruntimenamesES6Rxvarssharedsideframeworkvpcassertsless cssArray.prototype.flatMapregexlistenerskeyiewidthiterateshellendpointincludesbufferrequestjasmineconsumepromisesqueueMicrotaskjsdiffhandlersclassnamesviewbrowserslistObservableinferencetoArrayES2017dropcorepositivees8openlintshimdataviewECMAScript 2018ECMAScript 7testcommand-linejsUint32ArraytoSortedclientcloudtraildirectoryfastifyutil.inspectCSSStyleDeclarationguidio-tslogtasksqsstructuredCloneArrayBuffer#sliceHyBiArray.prototype.includesnodejsfetchyamlRegExp#flagsterminalhelpersimmutableconnectworkflowreusetimetypeerrorJSON-SchemacircularPushschemacopytypeofcss lessenvsigtermtoobjectformauthweaksetstarterpnpm9eventDispatcherfolderuprobustdefinePropertyirqWeakSetformatwindowswatchfast-deep-cloneprivateprotobuffpsvisualcacheglobmimerecursiveencryptionsymbolvariablesfast-deep-copypropdependenciesprotoESgdprmapreducefull-widthserializedataES2016eslint-pluginhottraversewebfseventslinuxmakedependency managertrimRightemrcontainsFloat32ArrayaccessorconcurrencyreducertapedescriptionUint8Arrayansibootstrap lesssnstrimStartCSSisduplexglobalsuperstructrapidchannelspinnerserror-handlingsinatracurlutilWebSockethasOwnPropertyPromise_.extendmomentreactTypeBoxhookformoptimizernegative zerorm -rfboundtypanionStyleSheetstreams2optimistrgbsimpledbloggercoerciblejQueryBigUint64ArrayfsECMAScript 2015Symbol.toStringTagapolloisConcatSpreadabledeepclonesettereveryextrafast-copystabletslibtestingrandomECMAScript 6fluxrfc4122mimetypesredux-toolkitajaxArrayBuffer.prototype.sliceObject.assigna11yregularAsyncIteratorlook-upTypedArrayReactiveExtensionsbufferspushcollection.es6zeroinspectmake dirtyped arrayelasticachebeanstalkpyyamlreduxreadablestreames-shim APIbyteOffsetsetPrototypeOfhashtypeinputcallbindfullwidthgetoptpackage.jsonwritesameValueZeroawsmochashebangcallboundmixinsstyleoptionBigInt64ArrayInt8ArraystylessuperagentkinesismacosStreamstostringtagESnextchrome
5.11.111

1 year ago

5.11.110

1 year ago

5.11.109

1 year ago

5.11.108

1 year ago

5.11.107

1 year ago

5.11.106

1 year ago

5.11.105

1 year ago

5.11.104

1 year ago

4.10.87

1 year ago

4.10.88

1 year ago

3.4.48

1 year ago

4.10.89

1 year ago

3.4.49

1 year ago

4.10.83

1 year ago

4.10.84

1 year ago

3.6.65

1 year ago

4.10.85

1 year ago

4.10.86

1 year ago

4.10.80

1 year ago

4.10.81

1 year ago

4.10.82

1 year ago

3.2.37

1 year ago

4.10.79

1 year ago

3.2.36

1 year ago

3.2.39

1 year ago

3.2.38

1 year ago

3.1.34

1 year ago

3.1.33

1 year ago

3.1.36

1 year ago

3.1.35

1 year ago

3.1.30

1 year ago

3.1.32

1 year ago

3.1.31

1 year ago

4.11.103

1 year ago

4.11.104

1 year ago

4.11.101

1 year ago

4.11.102

1 year ago

4.11.100

1 year ago

4.8.72

1 year ago

4.8.73

1 year ago

4.11.98

1 year ago

3.5.58

1 year ago

4.11.97

1 year ago

3.5.57

1 year ago

4.11.96

1 year ago

3.5.56

1 year ago

4.11.95

1 year ago

3.5.55

1 year ago

3.5.54

1 year ago

3.5.53

1 year ago

3.5.52

1 year ago

4.11.99

1 year ago

3.5.51

1 year ago

4.9.73

1 year ago

4.9.75

1 year ago

4.9.74

1 year ago

4.9.77

1 year ago

4.9.76

1 year ago

3.5.59

1 year ago

4.9.79

1 year ago

4.9.78

1 year ago

3.5.50

1 year ago

4.11.94

1 year ago

4.11.93

1 year ago

3.7.70

1 year ago

4.11.92

1 year ago

3.3.46

1 year ago

3.1.23

1 year ago

3.3.47

1 year ago

3.1.22

1 year ago

3.3.48

1 year ago

3.1.25

1 year ago

3.1.24

1 year ago

3.5.65

1 year ago

3.1.27

1 year ago

3.5.64

1 year ago

3.1.26

1 year ago

3.5.63

1 year ago

3.1.29

1 year ago

3.5.62

1 year ago

3.1.28

1 year ago

3.3.44

1 year ago

3.1.21

1 year ago

3.3.45

1 year ago

3.1.20

1 year ago

3.5.61

1 year ago

3.5.60

1 year ago

3.1.19

1 year ago

4.7.70

1 year ago

4.7.71

1 year ago

3.2.40

1 year ago

3.2.42

1 year ago

3.2.41

1 year ago

4.7.72

1 year ago

3.2.44

1 year ago

3.2.43

1 year ago

3.7.68

1 year ago

3.7.69

1 year ago

3.7.66

1 year ago

3.7.67

1 year ago

3.7.65

1 year ago

3.5.49

1 year ago

4.10.90

1 year ago

4.10.91

1 year ago

4.10.92

1 year ago

3.1.18

1 year ago

2.1.18

1 year ago

2.1.17

1 year ago

1.1.17

1 year ago

1.1.16

1 year ago

1.1.15

1 year ago

1.1.14

1 year ago

1.1.13

1 year ago

1.1.12

1 year ago

1.1.11

1 year ago

1.1.10

1 year ago

1.1.9

1 year ago

1.1.8

1 year ago

1.1.7

1 year ago

1.1.6

1 year ago

1.1.5

1 year ago