9 مستودعات
Validating that required environment variables are present and match specific criteria.
Distinct from Environment Variable Configuration: Specific to environment variables rather than general command-argument or schema validation
Explore 9 awesome GitHub repositories matching development tools & productivity · Environment Variable Validation. Refine with filters or upvote what's useful.
phpdotenv is a PHP environment variable loader and configuration parser. It reads key-value pairs from files and populates them into PHP system environment variables and global arrays to avoid hardcoding sensitive settings in code. The project includes a configuration variable interpolator to resolve nested references and variables within environment files. It also provides an environment variable validator to ensure required variables exist and match specific data types or values. The system covers application secret management, multi-environment deployment, and the parsing of raw configura
Checks that required variables are present and match specific criteria like data types or allowed values.
Valibot is a modular, type-safe schema library for validating and parsing structural data in TypeScript environments.
Validates environment variables and configuration files against schemas to detect setup errors.
Arktype is a TypeScript runtime validation library and schema orchestrator. It synchronizes TypeScript types with runtime data validation, allowing users to define type-safe schemas that ensure unknown data adheres to specific structures during application execution. The project distinguishes itself by using set-theory type analysis to determine intersections and subtype compatibility, alongside JIT-compiled validation functions for optimized performance. It supports advanced type modeling through branded type constraints, recursive alias resolution, and the ability to generate runtime valida
Parses values from environment sources against a schema to produce type-safe objects with automatic conversions.
env is a Go library that reads environment variables and populates the fields of a Go struct according to tag directives. It uses reflection to iterate over struct types and tags at runtime, mapping environment variable names to struct fields and applying parsing behavior defined in struct tags. The library supports required field validation, returning errors when marked fields are missing or empty after parsing. It also provides default value fallback from struct tags when environment variables are not set, environment variable expansion that recursively substitutes references within values,
Marks a field as required or non-empty, causing an error if the variable is missing or blank.
envconfig is a Go configuration decoder and environment variable mapper that deserializes environment variables into structured Go data types. It provides tools for validating mandatory fields and ensuring application configuration adheres to the external configuration patterns of twelve-factor app compliance. The library features a help generator that creates formatted usage text based on struct definitions to describe expected environment variables. It also includes a validation tool capable of detecting unused environment variables that match a specific prefix but do not correspond to any
Ensures that required environment variables are present and correctly formatted before the application starts.
هذا المشروع عبارة عن محلل وكيل مستخدم (User Agent) بلغة PHP وكاشف للأجهزة المحمولة. يحلل سلاسل وكيل مستخدم HTTP لتحديد متصفح الويب الخاص بالزائر، ونظام التشغيل، ونوع الجهاز. توفر المكتبة تكاملاً مخصصاً لإطار عمل الويب Laravel. وتميز بين الهواتف المحمولة، والأجهزة اللوحية، وأجهزة الكمبيوتر المكتبية مع تحديد روبوتات الويب والأسماء المحددة لزواحف محركات البحث. تشمل قدرات الأداة استخراج اللغات المفضلة من رؤوس الطلبات والتحقق من خصائص وكيل المستخدم المحددة. وتستخدم مطابقة أنماط التعبيرات النمطية وتعيين البيانات الثابتة لتصنيف العملاء وتوطين المحتوى.
Verifies that required environment variables exist and match a defined schema during build time.
هذا المشروع عبارة عن قالب لتطبيقات الجوال متعددة المنصات وboilerplate بلغة TypeScript، مصمم لتسريع بناء تطبيقات React Native باستخدام نظام Expo. يوفر المشروع بنية برمجية مهيأة مسبقاً مع هيكل مجلدات قياسي لتسريع مرحلة التطوير الأولية. يتميز القالب ببنية مشروع قائمة على الميزات (feature-based) ومجموعة أدوات أتمتة شاملة. يتضمن توجيهاً (routing) يعتمد على الملفات للتنقل، ومجموعة أدوات واجهة مستخدم (UI kit) للموبايل تعتمد على الأدوات المساعدة (utility-first) للتنسيق، وطبقة لإدارة حالة الخادم لجلب وتخزين بيانات API عن بُعد. يتضمن الإعداد خط أنابيب CI/CD للموبايل باستخدام GitHub Actions وEAS لأتمتة عمليات البناء والاختبار وتوزيع ملفات التطبيق الثنائية. تغطي القدرات الأوسع للمشروع التحقق من صحة النماذج (schema-based form validation)، والتخزين المحلي المشفر للحفاظ على الجلسات، والتعريب متعدد اللغات مع التحقق من ملفات الترجمة. كما يدمج أدوات لفرض الجودة، بما في ذلك git hooks للتدقيق (linting) وفحص الأنواع (type checks)، بالإضافة إلى اختبارات الوحدات (unit testing) والاختبارات الشاملة (end-to-end UI testing).
Implements schema-based checking of environment variables to ensure all required configurations are present.
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
Validates that required environment variables are present and correctly formatted before the application starts.
actionlint is a static analysis tool and linter specifically designed for GitHub Actions workflow files. It functions as a CI workflow validator and YAML configuration linter to ensure the syntax and logic of automation files are correct before deployment. The project distinguishes itself by performing deep security auditing and script analysis. It includes a shell script auditor to detect syntax bugs and script injection vulnerabilities in inline commands, and it scans for hardcoded credentials to prevent security leaks. The tool covers a broad range of validation capabilities, including ex
Ensures environment variable names do not contain invalid characters like equals signs or spaces.