import "./index.css" import { Title, Meta, Link } from "@solidjs/meta" import { Header } from "~/component/header" import { Footer } from "~/component/footer" import { IconCopy, IconCheck } from "~/component/icon" import desktopAppIcon from "../../asset/lander/opencode-desktop-icon.png" import { Legal } from "~/component/legal" import { config } from "~/config" function CopyStatus() { return ( ) } export default function Download() { const handleCopyClick = (command: string) => (event: Event) => { const button = event.currentTarget as HTMLButtonElement navigator.clipboard.writeText(command) button.setAttribute("data-copied", "") setTimeout(() => { button.removeAttribute("data-copied") }, 1500) } return (
OpenCode | Download
OpenCode Desktop

Download OpenCode

Available in Beta for macOS, Windows, and Linux

[1] OpenCode Terminal
[2] OpenCode Desktop (Beta)
macOS (Apple Silicon)
Download
macOS (Intel)
Download
Windows (x64)
Download
Windows (Arm)
Download
[3] OpenCode Extensions
VS Code
Install
Cursor
Install
Windsurf
Install
[4] OpenCode Integrations
GitHub
Install
) }