For gestor de variables de entorno para desarrollo local, the strongest matches are motdotla/dotenv (Dotenv is the foundational library for loading environment variables), jdx/mise (jdx/mise manages environment variables per project alongside runtime versioning) and direnv/direnv (direnv automatically loads and unloads environment variables per directory). theskumar/python-dotenv is also worth a look. Each is ranked by relevance to your query, popularity and recent activity.
Herramientas para gestionar e inyectar secretos de configuración en entornos de desarrollo local y flujos de trabajo de aplicaciones.
Dotenv is a configuration management library designed to load environment variables from local files into the process environment. By separating application settings from source code, it enables developers to maintain consistent configurations across different deployment stages and team environments. The utility provides mechanisms to transform plain text configuration files into encrypted formats, allowing sensitive secrets to be stored securely within version control systems. It handles the parsing and normalization of key-value pairs, ensuring that configuration data is consistently proces
Dotenv is the foundational library for loading environment variables from .env files into Node.js applications, with support for encrypted secrets, but it lacks a standalone CLI interface and advanced features like multiple profiles or template generation that would make it a comprehensive management tool.
Mise is a development environment orchestrator that manages software runtimes, environment variables, and task execution. It functions as a version manager and task runner, providing a unified interface to synchronize project-specific configurations and dependencies across different machines. By automating the installation and switching of tools, it ensures that development environments remain consistent and reproducible. The project distinguishes itself through a hierarchical configuration system that automatically discovers settings by traversing the directory tree. It uses shim-based comma
jdx/mise manages environment variables per project alongside runtime versioning and tasks, but its CLI, .env file loading, templating, secret management, and project-scoped configuration directly address the core need for organizing env vars across local development projects.
direnv is a shell environment manager and directory-based environment loader that automatically loads and unloads environment variables when switching between directories. It functions as a shell hook automation tool, injecting logic into the shell configuration to trigger environment updates based on the current project context. The project acts as a development environment isolator by localizing shell configurations, which prevents dependency conflicts and removes project-specific exports from global profile files. It includes specialized integration for Nix, allowing the loading of environ
direnv automatically loads and unloads environment variables per directory, which directly addresses managing env vars across local projects, though it lacks built-in encryption, multiple profiles, and template generation.
python-dotenv is a library and command line interface for managing environment variables in Python applications. It functions as a configuration parser and loader that reads key-value pairs from files and injects them into the system environment, enabling the decoupling of application configuration from source code. The project provides a command line interface for manipulating and editing environment variables within configuration files. It also includes a mechanism for recursive variable interpolation, allowing dynamic placeholders within configuration files to be resolved using existing en
Theskumar/python-dotenv is a library and CLI for managing environment variables via .env files, providing dotenv file support and a command-line interface that fits local development, though it lacks the requested multiple profiles, encryption, and template generation features.