Blog tag

#JavaScript

6 posts tagged with JavaScript.

← Back to all posts
4 min read

From Prototype to Production: Extracting LiveBind into a Standalone TypeScript Library

How I extracted a tightly-coupled JavaScript utility from a legacy PHP app into a modular, type-safe TypeScript library.

TypeScriptLegacy PHPLibrary DesignJavaScriptModularization
Read more
4 min read

Deleting Documentation to Improve Code Quality: A Radical Move in Git Context

Sometimes the best way to improve code quality is to delete outdated comments and trust the code itself.

technical-debtcode-qualityjavascripttypescriptclean-code
Read more
4 min read

Why I Upgraded Vite in a Laravel Project — And What Broke Along the Way

Upgrading Vite to v7 in a Laravel starter kit exposed hidden dependency traps, HMR failures, and manifest quirks — here's how I fixed it.

ViteLaravelJavaScriptBuild ToolsDependency Management
Read more
4 min read

Killing eval() in My Frontend Template Engine: Building a Safe Expression Parser for HomeForged

I replaced eval() in HomeForged's TemplateEngine with a secure custom parser to stop code injection without losing dynamic power.

JavaScriptSecurityTemplate EngineParsingFrontend
Read more
4 min read

How I Secured Game Saves with Client-Side Encryption in Gear to Glory

I encrypted localStorage saves in my browser game using Web Crypto and AES-GCM—here's how I balanced security, performance, and simplicity.

javascriptweb-cryptogame-developmentsecuritylocalstorage
Read more
4 min read

Why I Removed Environment Guards from Analytics Script Injection

I stopped conditionally loading Google Analytics based on environment—here's why that made my tracking more reliable and easier to test.

AnalyticsDebuggingFrontendGA4JavaScriptHybrid Architecture
Read more