QuikHubv1 is a small background service that lets the Chrome extension open local clones of GitHub repositories directly in your IDE.
This application has no UI and runs silently in the background.
- Copy
QuikHubv1.exeto a permanent location (for exampleC:\Tools\QuikHubv1). - Double‑click
QuikHubv1.exeonce.- No window will appear.
- The service will start listening on
http://127.0.0.1:5173. - A Run‑at‑logon entry is added under:
HKCU\Software\Microsoft\Windows\CurrentVersion\Run- The entry points to the exact path of
QuikHubv1.exe.
- From now on the service will start automatically whenever you sign in to Windows.
- Open Chrome.
- Navigate to
chrome://extensions. - Enable Developer mode.
- Click Load unpacked.
- Select the
extensionfolder located next toQuikHubv1.exe:- Example:
C:\Users\<you>\Documents\QuikHub - Copy\extension.
- Example:
- Confirm that the QuikHubv1 extension appears in the list and is enabled.
The extension will automatically talk to the local service at http://127.0.0.1:5173.
- Visit any GitHub repository page in Chrome.
- Use the extension’s UI (sidebar or popup) to choose:
- The branch (
mainby default). - The fetch mode:
cloneto usegit clone.zipto download and extract a ZIP snapshot.
- The IDE (for example
vscode).
- The branch (
- Trigger the Open action.
The background service will:
- Validate
ownerandrepo. - Check DNS connectivity to
github.com. - For
clonemode, verify thatgitis available. - Fetch the repository:
- Clone using
gitinto
%USERPROFILE%\github-quick-open\{owner}\{repo} - Or download and extract a ZIP snapshot into the same location.
- Clone using
- Open the configured IDE at the repository root.
- Logs are written to:
%APPDATA%\QuikHubv1\logs\app.log
- The Chrome extension calls the local HTTP API:
GET http://127.0.0.1:5173/healthGET http://127.0.0.1:5173/idesPOST http://127.0.0.1:5173/open
If you need to verify the service manually, you can open PowerShell and run:
Invoke-WebRequest http://127.0.0.1:5173/health -UseBasicParsingYou should see a JSON response with status: "ok".