1.0.1 • Published 4 years ago

pickenv v1.0.1

Weekly downloads
2
License
MIT
Repository
-
Last release
4 years ago

npm version

pickenv

process.env too big? Get only the environment variables you want.

example

npm install --save pickenv

Then write some regular expressions that match the environment variables you want to retrieve. This example retrieves all the envs that start with "HIST".

import pickenv from "pickenv";

pickenv(["HIST.*"]);

// result:
// {
//   HISTCONTROL: "ignoredups",
//   HISTSIZE: "1000"
// }

Why is this useful, you might ask? That's a good question.

1.0.1

4 years ago

1.0.0

4 years ago