looksmax
v0.1.0
Published
A visual optimization toolkit for analyzing and improving UI component rendering performance
Readme
looksmax
A visual optimization toolkit for analyzing and improving UI component rendering performance.
Features
- Profile render times across component trees and flag performance bottlenecks
- Automatically detect unnecessary re-renders and suggest memoization targets
- Generate visual diff reports comparing layout shifts between builds
- Integrate with CI pipelines to enforce rendering performance budgets
Install
npm install looksmaxQuick Start
const looksmax = require("looksmax");
const report = looksmax.analyze({
entry: "./src/App.jsx",
threshold: { renderTime: 16, layoutShifts: 0.1 },
});
report.summary(); // prints performance overview to consoleLicense
MIT
