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

1.0.3 • Public • Published

pdenv

parse your .env file.

NPM_VERSION_BADGE


disclaimer: my formatting is shit. please try and bear with me,
i was just tryna make something that worked.

{
  'trans rights': 'human rights.',
  'black lives': 'matter.',
  'slava': 'ukraini!'
}

install: how to install it.
npm i pdenv


example: how to use it.

# .env

[CONNECTION]
HOST="127.0.0.1" # loopback
PORT=3000

[USER]
LOGIN    = { "username": "pudding", "password": "SOCKMunchy%9001" }
KEYS     = ["7EAXtdHYh6pn", "5xk91OUVAj9a", "a0CYiJ53D3ihPq"]
REMEMBER = False
// main.ts

import pdenv from 'pdenv';

pdenv.config();

formatting: how to format it.

string
as of right now, only uses double quotes. (")
STRING="The quick brown fox\njumps over the lazy dog."

number
floating point and integer values are accepted.
NUMBER=3.14

boolean
any capitalization accepted.
BOOLEAN=true

array
uses the JSON.parse function.
has to be one line.
booleans have to be all lowercase.
nesting allowed.
ARRAY=["VALUE", 9000, true]

object
uses the JSON.parse function.
has to be one line.
keys have to be in quotes.
booleans have to be all lowercase.
nesting allowed.
OBJECT={"STRING": "VALUE", "NUMBER": 3.14, "BOOLEAN": false}


// kye cedar :3c
kyedo( twitter, github );

Package Sidebar

Install

npm i pdenv

Weekly Downloads

0

Version

1.0.3

License

MIT

Unpacked Size

29.6 kB

Total Files

6

Last publish

Collaborators

  • kyedodev