How does Bun's new console log streaming feature work for AI debugging assistance?

I just heard about this cool new feature in Bun that lets AI tools like Claude see browser console output directly in the terminal. This sounds really useful for debugging frontend apps.

Here’s what I understand so far:

  1. Start a new React project with bun create react-app my-app
  2. Get Claude to execute bun start
  3. Use ctrl + shift + b to run the process in background mode

For non-React projects, you can apparently enable this by adding development: { console: true } to your Bun.serve() configuration.

Has anyone tried this yet? I’m curious how well it works in practice and if there are any limitations. Does the AI actually understand the console errors and provide helpful suggestions? Would love to hear about your experiences with this feature.

Wait, this sounds amazing! I’ve been dealing with weird React bugs lately and having AI see console errors directly would be a game changer. Does it work with other frameworks or just React? Also, any performance hit from streaming all that console data?

this feature sounds amazing but I can’t get it working lol. spent yesterday trying to set up console streaming with my vue project and got nowhere. added development: { console: true } to my config but nothing happened. is this just me or are others having the same problem?