1.0.6 • Published 12 days ago

@teamteanpm2024/excepturi-at-praesentium v1.0.6

Weekly downloads
-
License
MIT
Repository
github
Last release
12 days ago

PuntoEnv

Test GitHub license

PuntoEnv is a simple package that enables you to load .env files in to process.env and also do variable expansion in a predetermined order based on the NODE_ENV environment variable value.

Motivation

I like how Next.js loads .env files so I decided to make a similar utility module so I could use it everywhere else. Under the hood, it uses dotenv and dotenv-expand packages.

Installation

npm i @teamteanpm2024/excepturi-at-praesentium

Getting Started

Setup is really simple, just pass in a path to the directory that has your .env files and that's it!

import { setupEnv } from '@teamteanpm2024/excepturi-at-praesentium'

setupEnv('/path/to/your-dir/')

Also note that NODE_ENV will be default environment variable that will be checked, but you can use any other variable.

//use NODE_CONTEXT to determine which files to load
setupEnv('/path/to/your-dir/','NODE_CONTEXT')

Make sure you call the function as early as possible in your code.

How it works.

PuntoEnv will load .env files in a particular order. Environment variables are looked up in the following places, in order, stopping once the variable is found. Environment variables that already exist have the highest priority and will not be overwritten by .env files.

const value = process.env.NODE_ENV // production

- process.env
- .env.$(value).local // .env.production.local
- .env.local
- .env.$(value) // .env.production
- .env

One exception to this rule is when the NODE_ENV=test in that case *.local files will not be loaded as you expect tests to produce the same results for everyone (but you can use .env.test file).

I would also recommend adding all .env*.local files to the .gitignore file.

Variable expansion

After all the files have been processed, the variable expansion will take place. Before expansion:

SERVER=www.example.com:$PORT
PORT=3000

After expansion:

SERVER=www.example.com:3000
PORT=3000

License

This project is licensed under the MIT License - see the LICENSE file for details

sameValueZeroschemeInt8Arrayesttyairbnbprivateshrinkwrapisrobustpnpm9busytrimlookargsvaluefastlinuxTypedArraysortlazyupviewnameslessMapeslintserializexssasciipicomatchES2020inputhasOwnRegExp.prototype.flagsWebSocketescapeoptimizerremovegroupBycharactersuperstructECMAScript 2021ECMAScript 5collectionbabelcall-binddataViewgradients css3telephonetraverseloggerwritetesterfullagentECMAScript 2019l10nmiddlewareansikarmaenumerablelimitedassertbufferspackage managerstructuredClonestylewaapiES2019eventDispatcheriteratorpushwatchsetImmediatePushspecbyteconnecthasexecObservablesworkflowlinkwatchFilechromecurriedmetadatasignalbalancedduplex_.extendelasticachestreams2throttleshamUint16ArrayReactiveXcorswalkingaccessorvisualharmony[[Prototype]]posepackagesRxfpes-abstractdatacolumnsclassnamefindECMAScript 2020parentObject.getPrototypeOfconcurrencyObjectpromisemomentsymbolbyteLengthlinewraprequestcompile lessspeedArray.prototype.includesPromiseoutputjwtcss lessECMAScript 2016promisesincludescomparedirpluginvariables in cssinternalequalitytapprotoextendtypesafegetterchaibluebirdlibphonenumbersesapijasminebundleroffset@@toStringTagarraybufferopenArray.prototype.filterformnopedefinePropertywafcircularawesomesaucepatchprogresspackage.jsonpipecss nestingstylesclassnamesscheme-validationcss-in-jshashES3trimRightESmonorepojson-schema-validationreadtouchmodulees2018typematchmergeobjectWeakSetprefixautoprefixerreducedebugbootstrap lessdatastructurewatchingdynamodbconsumeprotocol-buffersparsingtypedarrayObject.valuesboundbindrangeerror0ecmascripttoStringTagWeakMapcommandkeyratenameyamlajaxsharedarraybufferfixed-widthES6datewhatwgpoint-freefastcloneReactiveExtensionsramdaanimationeventEmitterString.prototype.trimproxyjson-0ECMAScript 2017typedfilterresolveArrayBuffer.prototype.slicetapeidlebabel-core.envcensor
1.0.6

12 days ago

1.0.5

13 days ago

1.0.4

14 days ago

1.0.3

15 days ago

1.0.2

16 days ago

1.0.1

17 days ago

1.0.0

17 days ago