Console

+
UniversalWorks with Expo & React Native CLI

This tool works with both Expo and React Native CLI projects. Just install and go.

A Chrome-DevTools-style console for your React Native app. Buoy Console captures every console.log, console.warn, console.error, and console.info on the device and shows them in a familiar, filterable panel — on your phone, on the desktop dashboard, or through your AI agent.

Installation

npm install @buoy-gg/console

Once installed, Console appears automatically in the floating menu. It patches console.* directly, so logs from your own code and your dependencies are captured with no extra setup.


What You Can Do

  • See every log, livelog, info, warn, and error stream in as they happen, color-coded by level.
  • Filter by level — Focus on just errors and warnings when you're chasing a bug.
  • Search — Filter messages by substring to find the exact log you care about.
  • Read production logs — Because Buoy runs on-device in any build, you can read console output from a release build with no cable and no Metro connection.
  • Expand structured data — Objects and arrays are formatted and expandable, just like the browser console.

Read the console from your AI

With the MCP server, an AI agent can read the console tail directly with get_console — filtering by minimum level or message substring to pull just the errors it needs while debugging.


What's Next