Did Claude Code became faster after Bun switch Anthropic's Claude Code, an AI coding assistant, has been rewritten in Bun, a JavaScript runtime, resulting in significant performance improvements including faster startup times and reduced latency for code analysis and editing tasks. The switch from Node.js to Bun, announced in the latest feature update, enables Claude Code to map entire codebases in seconds and handle multi-file edits more efficiently. Claude Code Work with Claude directly in your codebase. Build, debug, and ship from your terminal, IDE, Slack, web, and more. Available for macOS, Linux, and Windows. Other ways to use Claude Code: export function ThemeProvider {children}: {children: ReactNode} { const prefersDark = useMediaQuery ' prefers-color-scheme: dark ' const stored = localStorage.getItem 'theme' const mode, setMode = useState stored ?? prefersDark ? 'dark' : 'light' useEffect = { localStorage.setItem 'theme', mode }, mode return