I was tired of importing 47KB of string utilities across three services just to slugify a URL, camelCase a property, and base64-encode the result.
So I built TextForge: 28 text transformations behind one REST endpoint.
The problem: Every service had its own copy of slugify, camelCase, base64, extractEmails, etc. Version drift, bundle bloat, inconsistent behavior.
The solution: One API, composable pipelines, predictable JSON.
curl -X POST https://textforge.co/v1/run \






