Search for a function, variable, or text pattern across dozens of repositories simultaneously from a web browser.
Index private Git repositories via SSH keys or local paths and make them searchable across your whole team.
Run a lightweight internal code search server on your own machine without sending code to any third party.
Search code repositories from inside Vim, Emacs, Sublime Text, or VS Code using community plugins.
Requires Go 1.24 or newer and npm, HTTPS requires running behind a separate proxy like nginx.
Hound is a code search engine that lets you search through many code repositories at once from a web browser. It was built for developers and teams who need to find a specific function, variable, or text pattern across large codebases quickly. The underlying search technique uses trigram indexing, which makes searches very fast compared to scanning files line by line. The tool runs as a server on your own machine or a server you control. You give it a configuration file listing the repositories you want indexed, and it keeps local copies up to date by polling for changes every 30 seconds by default. Once the server is running, you open a web interface in your browser and type your search query. Results come back nearly instantly, even across dozens or hundreds of repositories at once. Hound supports several version control systems: Git is the default, but Mercurial, SVN, Bazaar, and local folders all work too. Private repositories are supported through SSH keys, local clones, or local directory paths. The polling interval and the number of repositories indexed at the same time can both be adjusted in the configuration file. A handful of text editors have community-built plugins for Hound, including Sublime Text, Vim, Emacs, and Visual Studio Code, so you can run searches without leaving your editor. Setup requires Go (version 1.24 or newer) and npm installed on your system. A container-based setup option is also documented for those who prefer that workflow. Hound is tested on macOS and CentOS and should work on most Unix-like systems. Windows is not officially supported, though the README notes it can compile and run there. The server does not handle HTTPS on its own, so users who need encrypted access typically run it behind a proxy like nginx or Apache.
← hound-search on gitmyhub — every repo by this author, as a profile.
Verify against the repo before relying on details.