A floating button opens console, network, and performance panels on top of a running Lynx app. Read your logs without a computer.
A console.log inside a 'main thread' function lands in the same list as the rest.
Type code at the bottom of the log tab and it runs inside the app.
Method, status, headers, request body, response. Recording starts at init.
You can put any debugging information you need into a console tab.
npm install lynx-console// src/index.tsx
import {
initLogMonitor,
initNetworkMonitor,
} from "lynx-console/setup";
initLogMonitor();
initNetworkMonitor();// src/App.tsx
import LynxConsole from "lynx-console";
<view>
{/* your app */}
<LynxConsole />
</view>;