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

@devmy/dotenv2shell

v1.1.0

Published

A CLI lets you easily load environment variables from a `.env` file into your current shell session. It provides flexibility through various options and supports both zsh and bash.

Downloads

123

Readme

@devmy/dotenv2shell - Load Environment Variables from .env File

This TypeScript CLI lets you easily load environment variables from a .env file into your current shell session with @dotenv-run/core. It provides flexibility through various options and supports both zsh and bash.

  • ✅ Load environment variables from .env files
  • ✅ Load environment variables from .env.vault files
  • ✅ Expand environment variables API_URL=$API_BASE/users
  • ✅ Define environment variables for a specific environment (e.g. .env.production)
  • ✅ Load priorities of .env.* files (e.g. .env.production > .env)
  • ✅ Hierarchical cascading configuration in monorepo projects (Nx, Turbo, etc.) apps/next-app/.env > apps/.env > .env

Usage

npx @devmy/dotenv2shell [options]

Options

  • -o, --override: Override existing environment variables on your machine with values from the .env file (default: false).
  • -e, --environment: Environment to load (.env.{environment}).
  • -p, --prefix: Prefix to filter environment variables to load (e.g., MY_APP_).
  • -r, --root: Root directory to search for the .env file (default: current working directory).
  • -f, --files: multi parameter of .env files to load (e.g., -f .env -f .env.vault -f .env.local, default: ['.env.vault', '.env']).
  • -d, --dotenv_key: Manually specify the DOTENV_KEY for decryption (if using .env.vault).
  • -c, --cwd: Specify manually the cwd (Current Working Directory).

Examples

  • Load the default .env file from the current directory:
eval $(npx @devmy/dotenv2shell)
  • Load a specific .env file with a prefix and override existing variable:
eval $(npx @devmy/dotenv2shell -f my-env.env -p MY_APP_ -o)

Handling Backslash Escapes

In some cases, environment variables loaded from the .env file may contain special characters that require backslash escapes to be interpreted correctly by the shell. This is particularly relevant when dealing with paths, file names, ssh-keys or other strings that might contain characters like spaces, commas, or backslashes themselves.

If you encounter issues with environment variables not behaving as expected, check for any special characters in their values and consider using backslash escapes to ensure they are treated as literal characters. For example:

eval $(npx @devmy/dotenv2shell) &&
echo -e "$DEPLOY_GITHUB_SSH_KEY" | ssh-add -

Remember that the -e option in echo is used to enable backslash escapes when printing strings, but it's not necessary when loading environment variables. The shell will automatically handle backslash escapes when interpreting environment variable values.