Last updated November 11, 2018
In a recent announcement, a Code Search and Navigation tool named Sourcegraph was declared Open Source. As it makes navigating through Source Code much more convenient, the tool itself going Open Source is definitely a big plus for developers!
We’ve looked into its features and also tried to find out how it can be so helpful for developers who are used to navigate through code hosts like GitHub, GitLab and others quite regularly.
Sourcegraph Features
As stated on their GitHub page, Sourcegraph has the following features:
- Fast global Code search
- Intelligent Code recognition
- Code host Enhancement on GitHub, GitLab and more
- Extension API for easier third-party integration
You can deploy Sourcegraph on your server and configure it to work with your or your organization’s Git repositories. Once that’s done, you get a search engine where you can search all the codes.
But if you are a lone developer, like me, you can still use Sourcegraph on GitHub or GitHub alternatives like GitLab.
I am going to quickly show you how to use Sourcegraph for a better code navigation on GitHub.
Using Sourcegraph on GitHub
Let’s find out how you can easily try this tool with a Firefox or Chrome extension. Here, we’ve used Firefox:

This is how it looks like with the Sourcegraph extension installed and when you view a file on the Vim repository on GitHub:


Note how we can see the new Sourcegraph buttons within the GitHub interface, thanks to the installed extension. One thing to note is that one need not even login into GitHub to navigate through hosted Code and their repositories in order to make use of the helpful features of Sourcegraph.
When you click on “View File”, the entire look changes and the file is opened for you in a completely new interface within the browser itself:

Without Sourcegraph, if you want to look for files with a particular format, say C++ .cpp files in this example, it is very difficult to filter and view them if we try to use GitHub’s own search engine within this repository:

But once you are using this extension, see how easily you can view all such files in one go within the repository:


Sourcegraph can narrow down through Code Search very intelligently as explained in this video:
Code intelligence in Sourcegraph is powered by Lang Server, which enables identifying the type of Programming Language you are using:

Learn more about its usefulness in the following video:
Bonus Tip on using Sourcegraph
Even without installing an extension on your browser, you can directly use Sourcegraph as an IDE on top of any repository on GitHub by just adding “sourcegraph.com/” as a prefix to the repository URL.
For example, the URL for the official Vim repository is:
To view the same through Sourcegraph, modify the URL as below and you’re good to go:
sourcegraph.com/github.com/vim/vim
I’ve also tested this method with GitLab and it works there too! You can try other repositories as well!
Sourcegraph Developers have a master plan behind declaring it Open Source:
Make basic code intelligence ubiquitous (for every language, and in every editor, code host, etc.)
Make code review continuous and intelligent
Increase the amount and quality of open-source code
Here are the ways they suggest you can contribute to its Development:
- Submit pull requests to the Sourcegraph Open Source Project
- Actively participate in its continued development
- Add and improve documentation
- Build Sourcegraph extensions to Enhance Code viewing/reviewing on both Sourcegraph and GitHub
So this was a brief look into how Sourcegraph can make the developer’s life a lot more easier and hassle-free.
Are you a Developer? Would you like to adopt this new Open Source Tool in your day-to-day programming tasks? Let us know in the comments section below.
