Acacia DB for VS Code: Map your database usage in source code (1.0.0 1.2.0)
Acacia DB is a VS Code extension that helps developers understand database usage in their code by mapping table and column references across the workspace. It analyzes source code locally without relying on cloud services or large language models, offering insights like hot paths, index suggestions, and unused tables. Recent updates from versions 1.0.0 to 1.2.0 have improved performance, accuracy, and feature depth.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 3791733) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Karlis Posted on Apr 30 Acacia DB for VS Code: Map your database usage in source code (1.0.0 1.2.0) #vscode #database #sql #productivity If you've ever inherited a legacy system and asked "which tables are actually used, where, and how do they connect?" — that's the question Acacia DB tries to answer. It's a VS Code extension that scans your workspace for references to database tables and columns, then turns the raw matches into something you can navigate, rank, and diagram.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).