1. Converting Database Config
Backend DeveloperBackground
A legacy Java application uses a database.properties file with flat keys.
Problem
The team needs to move this configuration into a Node.js service that requires a structured JSON format.
How to use
Paste the properties content and enable 'Create Nested Objects from Dotted Keys'.
database.host=localhost
database.port=5432
database.user=adminOutcome
The tool outputs a clean JSON object with a nested 'database' key containing the host, port, and user fields.