Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
iPerf is a simple performance testing framework for front-end renderers. It is developed based on Vite and supports testing rendering time, frame rate, and can collect hardware information.
npm install iperf --save-dev
test.perf.ts
:export const TestName = async ({ perf, container }) => {
// Test the rendering duration by marking the start and end of the rendering process
const canvas = document.createElement('canvas');
container.appendChild(canvas);
const ctx = canvas.getContext('2d');
perf.mark('start');
for (let i = 0; i < 1000; i++) {
ctx.fillRect(0, 0, 100, 100);
}
perf.mark('end');
perf.measure('rendering', 'start', 'end');
// Test the rendering duration by giving a callback function
await perf.evaluate('rendering', () => {
for (let i = 0; i < 1000; i++) {
ctx.fillRect(0, 0, 100, 100);
}
});
// Record the frame rate
requestAnimationFrame(function loop() {
perf.frame();
ctx.clearRect(0, 0, 100, 100);
ctx.fillRect(0, 0, 100, 100);
requestAnimationFrame(loop);
});
};
npx perf
You can configure iPerf by creating a perf.config.js
file in the root of your project:
import { defineConfig } from 'iperf';
export default defineConfig({
perf: {
socket: {
port: 7880,
timeout: 60 * 1000,
},
report: {
dir: 'perf/reports-1',
},
},
// other vite options
});
© 2024 Aarebecca. ISC License.
FAQs
Performance Testing Framework for Front-end Renderers
The npm package iperf receives a total of 53 weekly downloads. As such, iperf popularity was classified as not popular.
We found that iperf demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.