DEV Community

Cover image for I built a privacy-focused HCL & YAML converter (because I don't trust servers)
Yahya Asloune
Yahya Asloune

Posted on

I built a privacy-focused HCL & YAML converter (because I don't trust servers)

Hello devs! πŸ‘‹

I'm an embedded systems student currently diving into DevOps. While learning Terraform, I kept needing to convert HCL to JSON or debug cron expressions.

I found plenty of tools online, but they all had the same problem: they required sending my config files to a server.

I didn't feel comfortable pasting potential secrets into a random website, so I built my own client-side toolkit.

πŸ› οΈ The Tool: TechConverter.me

It is a simple collection of utilities that run 100% in your browser:

  • HCL ↔ JSON ↔ YAML: Great for Terraform/Ansible users.
  • Cron Debugger: Visualizes exactly when your cron job will run.
  • JWT Decoder: Decodes tokens without verifying/sending them remotely.
  • Netmask/CIDR Calc: For quick subnetting checks.

πŸ”’ How it works

The site is static. I used JavaScript libraries (like hcl-to-json) to handle everything locally. You can turn off your WiFi and it will still work.

πŸ‘¨β€πŸ’» Contributing

I'm still adding features. If you have a file format you hate converting manually, let me know in the comments and I'll try to add a parser for it!

Link: https://techconverter.me

Top comments (0)