awesome-repositories.com
博客
awesome-repositories.com

通过 AI 驱动的搜索,发现最优秀的开源仓库。

探索精选搜索开源替代品自托管软件博客网站地图
项目关于排名机制媒体报道MCP 服务器
法律隐私政策服务条款
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

11 个仓库

Awesome GitHub RepositoriesEnvironment Variable Security

Strategies for isolating and protecting sensitive configuration data in application environments.

Distinguishing note: Focuses on backend-only access to sensitive variables, distinct from general configuration management.

Explore 11 awesome GitHub repositories matching security & cryptography · Environment Variable Security. Refine with filters or upvote what's useful.

Awesome Environment Variable Security GitHub Repositories

用 AI 发现最棒的仓库。我们将通过 AI 为您搜索最匹配的仓库。
  • solidjs/solidsolidjs 的头像

    solidjs/solid

    35,621在 GitHub 上查看↗

    Solid is a declarative JavaScript framework for building user interfaces through fine-grained reactivity. By utilizing a compile-time template transformation process, it converts JSX into direct DOM manipulation instructions, eliminating the need for a virtual tree. This architecture allows the framework to track dependencies at the individual element level, ensuring that state changes trigger surgical updates to the interface. The framework distinguishes itself through its isomorphic rendering pipeline, which shares reactive logic across server and client environments to support both initial

    Reads sensitive environment variables exclusively in backend code to prevent exposure in client-side bundles.

    TypeScriptdeclarativefine-grainedjavascript
    在 GitHub 上查看↗35,621
  • pingdotgg/t3codepingdotgg 的头像

    pingdotgg/t3code

    12,671在 GitHub 上查看↗

    t3code is a platform for operating AI coding agents through a web interface to develop and maintain software projects. It functions as an orchestrator that manages AI agent lifecycles and communication, providing a system for provisioning isolated remote development environments and managing secure connections to cloud-hosted resources. The project utilizes an event-sourced backend architecture that processes typed commands into persisted domain events to maintain system state. It employs a communication system based on JSON-RPC over WebSockets to synchronize real-time state and events betwee

    Secures account-specific API keys and endpoints using server-side secrets.

    TypeScript
    在 GitHub 上查看↗12,671
  • symfony/translationsymfony 的头像

    symfony/translation

    6,607在 GitHub 上查看↗

    Symfony Translation is a PHP library and framework component for internationalizing applications. It provides a complete system for managing message catalogs, handling locale-aware string translation, and formatting messages using ICU MessageFormat syntax to support pluralization, gender, and conditional selection. The component organizes translatable strings into named domains, supports key-based lookup that decouples source text from localized versions, and offers deferred rendering through translatable objects that store parameters and render only when output is needed. The library disting

    Provides a command to encrypt sensitive environment variable values for safe storage.

    PHPcomponentphpsymfony
    在 GitHub 上查看↗6,607
  • roots/bedrockroots 的头像

    roots/bedrock

    6,531在 GitHub 上查看↗

    WordPress boilerplate with Composer and Git, easier configuration, and an improved folder structure

    Reads sensitive values like database credentials from a .env file, keeping them out of version control.

    PHPbedrockcomposerphp
    在 GitHub 上查看↗6,531
  • goravel/goravelgoravel 的头像

    goravel/goravel

    4,749在 GitHub 上查看↗

    Goravel 是一个功能齐全的开发脚手架和框架,用于使用 Go 编程语言构建 Web 应用、REST API 和 gRPC 服务。它实现了模型-视图-控制器(MVC)架构,并为高性能远程过程调用服务器和客户端提供了全面的工具包。 该框架的独特之处在于其广泛的集成生态系统,包括用于数据库管理的流畅对象关系映射器(ORM),以及用于管理自动化和项目脚手架的专用命令行界面工具包。它具有基于驱动的服务抽象,允许开发者在不更改应用逻辑的情况下切换存储、缓存和会话后端。 该平台涵盖了广泛的应用功能,包括带有分布式队列的异步任务处理、通过基于令牌的身份验证进行的安全身份管理,以及具有加密和访问控制的稳健安全层。它还提供内容本地化、模板渲染以及带有依赖模拟的自动化测试基础设施工具。

    Encrypts sensitive configuration files for safe version control and decrypts them during application deployment.

    Goapiframeworkgo
    在 GitHub 上查看↗4,749
  • pytorch/servepytorch 的头像

    pytorch/serve

    4,354在 GitHub 上查看↗

    这是一个 PyTorch 模型服务框架,旨在通过可扩展的网络端点在生产环境中部署和扩展机器学习模型。它充当高性能推理服务器、优化器和模型生命周期管理器,处理模型加载、请求批处理和硬件加速。 该系统通过先进的编排和优化功能脱颖而出,例如使用执行图将多个模型链接到顺序工作流中,以及采用动态批处理来提高吞吐量和降低延迟。它通过连续批处理和张量并行化为生成式 AI 和大型语言模型提供专门支持。 广泛的功能领域包括跨 NVIDIA、AMD 和 Apple Silicon 等不同硬件的 GPU 资源管理,以及用于注册、版本控制和工作节点扩展的全面模型生命周期管理。它还集成了用于通过 Prometheus 兼容指标跟踪系统健康状况和模型性能的可观测性工具。 该服务器通过用于生命周期控制和运行时参数配置的命令行界面进行管理。

    Filters visible environment variables for backend workers using regular expressions to isolate sensitive configuration.

    Java
    在 GitHub 上查看↗4,354
  • httpie/desktophttpie 的头像

    httpie/desktop

    3,851在 GitHub 上查看↗

    This is a desktop HTTP client application used for constructing, sending, and analyzing HTTP and GraphQL requests. It provides a graphical interface for API development and testing, including a dedicated GraphQL client with schema-driven autocomplete and validation. The project features an integrated AI assistant that generates API requests from natural language prompts. It supports a complex organization system of spaces and collections with hierarchical authentication inheritance and recursive variable resolution for dynamic request values. The tool covers a broad range of capabilities, in

    Provides local-only storage for environment variables to ensure sensitive credentials never synchronize to the cloud.

    apiapi-clientapi-testing
    在 GitHub 上查看↗3,851
  • symfony/dotenvsymfony 的头像

    symfony/dotenv

    3,790在 GitHub 上查看↗

    This library is a PHP environment variable loader and configuration parser. It extracts key-value pairs from local text files to populate global server and system environment arrays, ensuring that sensitive credentials and application settings remain separate from the source code. The tool implements twelve-factor app configuration principles by mapping local files to process-level variables. It utilizes a regex-based parser to identify variable assignments while stripping comments and whitespace, and it includes guards to prevent local configuration files from overwriting existing host-level

    Implements policies that prevent local configuration files from overwriting existing system environment variables.

    PHP
    在 GitHub 上查看↗3,790
  • thunderclient/thunder-client-supportthunderclient 的头像

    thunderclient/thunder-client-support

    3,717在 GitHub 上查看↗

    Thunder Client is a REST API client extension for VS Code that functions as an HTTP request manager, testing tool, and mocking workspace. It allows users to send requests, organize them into collections, and manage API configurations directly within the editor. The project distinguishes itself through a command-line interface for executing automated test suites in CI/CD pipelines and a Git-based synchronization system for sharing request collections and environment configurations across teams. It also incorporates artificial intelligence to automate the conversion of API scripts during migrat

    Stores environment variable values in an encrypted format to prevent sensitive data from being exposed.

    apigraphqlhttpclient
    在 GitHub 上查看↗3,717
  • t3-oss/t3-envt3-oss 的头像

    t3-oss/t3-env

    3,782在 GitHub 上查看↗

    t3-env is a type-safe environment manager and schema validator for TypeScript. It maps environment variables to static types to provide autocompletion and prevents configuration errors through a system that verifies required variables are present and correctly formatted before an application starts. The project enforces strict variable scope to isolate server-side secrets from the client browser, preventing sensitive data from leaking into client-side bundles. It also provides configuration presets tailored to the naming conventions of specific hosting and deployment platforms. The library i

    Isolates and protects sensitive configuration data by restricting access to server-side contexts.

    TypeScript
    在 GitHub 上查看↗3,782
  • toddbluhm/env-cmdtoddbluhm 的头像

    toddbluhm/env-cmd

    1,818在 GitHub 上查看↗

    This project is a command-line utility that executes processes by injecting environment variables from local configuration files. It functions as a runtime wrapper, allowing developers to manage application settings and process execution contexts without modifying global system variables. The tool distinguishes itself by supporting dynamic configuration loading, which allows for the use of files that export objects or promises to compute values at runtime. It provides granular control over environment management, including the ability to group variables into named collections, protect existin

    Prevents external configuration files from overwriting existing environment variables, ensuring primary process settings remain secure.

    TypeScriptcommand-line-toolcross-platformenvironment-variables
    在 GitHub 上查看↗1,818
  1. Home
  2. Security & Cryptography
  3. Environment Variable Security

探索子标签

  • Environment Variable EncryptorsEncrypts the value of a sensitive environment variable so it can be stored safely without exposing the plaintext secret. **Distinct from Environment Variable Security:** Distinct from Environment Variable Security: focuses on encrypting individual variable values, not general isolation strategies.
  • Environment Variable Protection PoliciesMechanisms that prevent external configuration files from overwriting existing environment variables. **Distinct from Environment Variable Security:** Distinct from Environment Variable Security: focuses on preventing overwrite collisions rather than general access control.
  • Local-Only Variable StorageStorage of environment variables exclusively on the local machine to prevent cloud synchronization of secrets. **Distinct from Environment Variable Security:** Focuses on the physical storage location and sync-prevention of variables for security.