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 We 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 we fixed it.

ViteLaravelJavaScriptBuild ToolsDependency Management
Read more
4 min read

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

We 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 We Secured Game Saves with Client-Side Encryption in Gear to Glory

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

javascriptweb-cryptogame-developmentsecuritylocalstorage
Read more
4 min read

Why We Removed Environment Guards from Analytics Script Injection

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

AnalyticsDebuggingFrontendGA4JavaScriptHybrid Architecture
Read more