Convertidor INI/JSON
Convierte entre formatos de configuración INI y JSON. Transforma archivos de configuración heredados a JSON moderno.
INI Format Notes:
- • Sections are denoted with
[section] - • Key-value pairs use
key = value - • Comments start with
;or# - • Values with spaces should be quoted
INI vs JSON - Detalles técnicos
Los archivos INI usan encabezados [sección] y pares clave=valor. JSON usa objetos anidados. La conversión entre ellos ayuda a migrar configuraciones heredadas a formatos modernos.
Alternativa de línea de comandos
// INI format
[database]
host = localhost
port = 5432
// JSON equivalent
{ "database": { "host": "localhost", "port": "5432" } }