Rubberduck is a browser extension that improves code navigation on GitHub. Specifically, it helps:
See it in action on our website.
Rubberduck is completely open source, and runs entirely on your personal machine (without any external server dependency). We feel this is critical for users to be comfortable using it on private repos.
Install the native host: The browser extension relies on a native host application, which manages git repos, and runs the language analysis to find usages and definitions. The native host source is in the native-host
dir. To install, run:
npm install -g rubberduck-native
Install the browser extension: The browser extension is available on the Chrome Store.
Rubberduck uses personal access tokens to access private repos. Potential improvements are being tracked in this issue.
chrome-extension://nopekhgebkpkbjoclackdlofmcpokgmc/options.html
; requires extension to be installed).Rubberduck runs locally, without any external dependencies. Which means your repo code is stored only on your machine. To see current state of repos on disk, open the extension settings page(chrome-extension://nopekhgebkpkbjoclackdlofmcpokgmc/options.html
).
Currently, the token is stored inside the browser's local storage (using the chrome.storage.local
APIs). This ensures that the token is not synced with other Chrome devices.
A better place to store tokens will be the local system keychain, which is in the backlog and tracked here.
Rubberduck is very new, actively developed and you might run into issues here and there. Please help us out by filing an issue when you run into one.