mirror of
https://github.com/kunkunsh/kunkun-ext-disk-speed.git
synced 2025-04-03 18:56:44 +00:00
28 lines
673 B
TypeScript
28 lines
673 B
TypeScript
import { sequentialReadTest, sequentialWriteTest } from "./speedtest/lib.ts";
|
|
|
|
const testPath = "./test.txt";
|
|
// const testPath = "/Volumes/Portable2TB/test.txt";
|
|
|
|
const writeResult = await sequentialWriteTest(
|
|
{
|
|
filePath: testPath,
|
|
sizeInMB: 1000,
|
|
rounds: 10,
|
|
bufferSizeMB: 1,
|
|
keepTheFile: true,
|
|
},
|
|
(progress) => {
|
|
console.log(progress);
|
|
}
|
|
);
|
|
console.log(writeResult);
|
|
console.log(writeResult.totalMB / writeResult.totalDuration);
|
|
|
|
const readResult = await sequentialReadTest({
|
|
filePath: testPath,
|
|
rounds: 3,
|
|
deleteAfter: false,
|
|
});
|
|
console.log(readResult);
|
|
console.log("read speed: ", readResult.totalMB / readResult.totalDuration);
|