Skip to main content

Guidepup Record Library

Guidepup Record provides tools for screen recording.

Here's a typical example:

import { macOSRecord } from "@guidepup/record";

(async () => {
// Start the screen recording.
const stopRecording = macOSRecord("./recordings/screenRecording.mov");

// ... perform some commands.

// Stop the screen recording.
stopRecording();
})();

Contents:

macOSRecord

See: macOSRecord

Start a screen recording on MacOS.

windowsRecord

See: windowsRecord

Start a screen recording on Windows.