npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@agilearchitects/env

v2.0.0

Published

Getting environment variables from file or process

Downloads

5

Readme

Agile Architects AB - ENV

Getting environment variables from file or process

Environment file

An environment contains the environment variables that is to be present during application execution. The file is usually named .env and placed in the root folder of a project.

key-value pairs are seperated with new line and key and values are separated by an equal sign (=). Example

.env

APP_NAME=my cool app
TOKEN=fw8fh23nf

This defines two variables named APP_NAME and TOKEN with the values my cool app and fw8fh23nf set to each of them. An instance of the env-service is used to parse the text to the actual values.

Creating n ENV service instance

Start by creating a new service instance. ./.env is the path to file to read values from.

import { EnvService } from "@agilearchitects/env";
const envService = new EnvService("./.env");

Read environment variables

// script.js

import { EnvService } from "@agilearchitects/env";
const envService = new EnvService("./.env");

console.log("app name: " + envService.get("APP_NAME", ""));
console.log("token: " + envService.get("TOKEN", ""));
console.log("version: " + envService.get("VERSION", "0.0.1"));
console.log("value of foo: " envService.get("FOO", "variable FOO is empty"));

Using the .env file stated above and executing the following script as APP_NAME="Cool new APP" VERSION=2.0 node script.js should print out:

app name: my cool app
token: fw8fh23nf
version: 2.0
value of foo: variable FOO is empty

Notice how APP_NAME is not overwritten as values from the .env file will always be used before process environment variables.

A good use of this lib:

  • Create env variable values in file for local development instead of having to list them each time when executing application, debugging or testing
  • .env file is a good place to store sensitive data that is not part of the repo (password, secret keys, etc.) or data that is not bound the the application itself (urls, paths, etc).
  • Forces the use of fallback values to avoid application crashing on executing because environment variable is missing