benchwrk
v0.1.3
Published
Got all logs in one dashboard
Readme
BenchWrk
A unified log aggregation and visualization component for React and Next.js applications.
Installation
# Using npm
npm install benchwrk
# Using yarn
yarn add benchwrk
# Using bun
bun add benchwrk
# Using pnpm
pnpm add benchwrkFeatures
- 📊 Unified log visualization across multiple sources
- 🔄 Real-time log streaming capabilities
- 🔍 Advanced filtering and search options
- 🎨 Customizable themes and layouts
- 🧩 Modular architecture with strategy patterns
Usage
import { BenchWrk } from "benchwrk";
function App() {
return (
<div className="container">
<h1>Application Logs</h1>
<BenchWrk
config={{
apiKey: "sk_****",
}}
/>
</div>
);
}
