
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
logigo-core
Advanced tools
Runtime code visualizer for Vibe Coders - see, slow down, and debug logic flow
A lightweight, injectable JavaScript library that visualizes code execution flow in real-time. Perfect for debugging AI-generated code and understanding complex logic.
<script src="https://unpkg.com/logigo/dist/logigo.min.js"></script>
<script>
new LogiGoOverlay({ speed: 1.0, debug: true }).init();
</script>
npm install logigo-core
import LogiGo from 'logigo-core';
LogiGo.init({ speed: 1.0 });
async function myFunction() {
await LogiGo.checkpoint('step1');
console.log('Step 1');
await LogiGo.checkpoint('step2');
console.log('Step 2');
}
<button id="login_button">Login</button>
<script>
async function handleLogin() {
await LogiGo.checkpoint('login_button'); // Highlights the button!
// Login logic here
}
</script>
The LogiGo overlay provides:
const overlay = new LogiGoOverlay(options);
overlay.init();
Options:
speed (number): Initial execution speed (default: 1.0)debug (boolean): Enable debug logging (default: false)position (string): Overlay position - 'bottom-right', 'bottom-left', 'top-right', 'top-left' (default: 'bottom-right')Highlight UI elements as your code executes:
await LogiGo.checkpoint('step_1', {
domElement: '#my-button', // Selector or HTMLElement
color: 'gold', // Highlight color (default: gold)
duration: 2000, // Duration in ms (default: 2000)
intensity: 'medium' // low | medium | high
});
Subscribe to checkpoint events for AI analysis or automated testing:
// Get the reporter instance
const reporter = LogiGo.reporter;
// Subscribe to events
reporter.onCheckpoint((entry) => {
console.log('Checkpoint hit:', entry.id);
console.log('DOM Element:', entry.domElement);
console.log('Variables:', entry.variables);
});
// Export full report
const report = reporter.exportReport();
example/complete_demo.html - Full integration demoexample/visual_handshake.html - Visual Handshake Demoexample/reporter_demo.html - Reporter API Demoexample/ghost_diff.html - Ghost Diff DemoLogiGo is in active development. Contributions are welcome!
MIT License - See LICENSE file for details
Made with ❤️ for Vibe Coders everywhere
FAQs
Runtime code visualizer for Vibe Coders - see, slow down, and debug logic flow
We found that logigo-core demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.