2 repository-uri
Interactive read-eval-print loops for executing low-level debugger commands in real time.
Distinct from Debugger Command APIs: Focuses on the interactive shell for command execution rather than the static API for integration.
Explore 2 awesome GitHub repositories matching development tools & productivity · REPL Integrations. Refine with filters or upvote what's useful.
Laravel Tinker is an interactive shell that boots the full Laravel application context, allowing you to run PHP code, test models, and experiment with the framework in real time from the command line. It integrates PsySH as its underlying REPL engine, providing features like automatic namespace resolution, command history persistence, and on-demand class loading through Composer's autoloader. The tool handles the full lifecycle of a Laravel console command, from defining input signatures and prompting for missing arguments to executing commands programmatically and queuing them for background
Integrates PsySH as the underlying REPL engine for evaluating PHP expressions interactively.
nvim-dap is a Neovim plugin that serves as a client implementation of the Debug Adapter Protocol. It provides a language-agnostic debugger interface that integrates external debugger binaries into the editor, allowing users to manage breakpoints and step through code. The project enables remote process debugging by attaching to running processes or containerized applications via TCP sockets and network proxies. It supports connecting to debug adapters through standard input/output or TCP, with specialized support for launching and attaching to Java processes. The plugin covers program execut
Provides an interactive REPL for running low-level debugger commands using a specific prefix.