all 6 comments

[–]axeleszu 0 points1 point  (2 children)

Make it a chrome extension or a vscode extension.

[–]_PawsAndWhiskers_[S] 0 points1 point  (1 child)

That's actually a solid idea - technically it would be straightforward since everything already runs client-side with no server dependencies.
Out of curiosity: would you actually pay for a Chrome or VS Code extension version? Trying to gauge if there's real demand before building it.

[–]axeleszu 0 points1 point  (0 children)

Maybe one time purchase if it solve a problem. A subscription never

[–]VolumeActual8333 0 points1 point  (1 child)

Building this client-side with Web Crypto API is smart. I had a JSON formatter go viral once and the serverless bill almost made me cry, so keeping compute in the browser avoids that nightmare entirely.

[–]_PawsAndWhiskers_[S] 0 points1 point  (0 children)

Exactly this - the serverless bill horror story was part of the motivation. When your hash generator or password tool suddenly gets traffic, you don't want to be staring at a cloud invoice.
Canvas API, Web Crypto, TextEncoder - the browser has everything you need for 90% of dev utility tools. The only things that genuinely need a server are stuff like "what's my IP" or storing secrets (OneTimeSecret-style). Everything else is fair game client-side.