chirami
v0.0.10
Published
A lightweight, overlay-style console log viewer for React applications. Perfect for debugging on mobile devices or environments without DevTools.
Maintainers
Readme
Chirami
A lightweight, overlay-style console log viewer for React applications.
Perfect for debugging on mobile devices or environments without DevTools.
Features
- 📱 Mobile Friendly: View console logs directly on the UI.
- 🛡️ Safe: Handles circular references and prevents XSS.
- ⚡ Zero Config: Just import and place the component.
- ⚛️ React: Built for React 18+.
Installation
npm install chiramiUsage
Import ChiramiViewer and place it anywhere in your app (usually at the root level).
import { ChiramiViewer } from 'chirami';
function App() {
return (
<div>
<h1>My App</h1>
{/* Place it here! */}
<ChiramiViewer />
</div>
);
}It automatically captures:
- console.log
- console.warn
- console.error
- console.info
License
MIT
