Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@pathfindr.dev/recorder

Package Overview
Dependencies
Maintainers
2
Versions
36
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@pathfindr.dev/recorder

This is the pathfindr recorderSDK that you can use to make recordings of the screen, camera or both.

  • 1.0.1
  • npm
  • Socket score

Version published
Weekly downloads
87
increased by81.25%
Maintainers
2
Weekly downloads
 
Created
Source

pathfindr/recorder

This is the pathfindr recorderSDK that you can use to make recordings of the screen, camera or both.

Documentation

You can find the full documentation for the recorder and our other SDK's here https://pathfindr.dev/docs.

Quickstart

Install it using npm

npm install '@pathfindr.dev/recorder'

Create a HTMLElement

<div id="recorder-container" />

Initialize the recorder

import Recorder from '@pathfindr.dev/recorder/';
import '@pathfindr.dev/recorder/large.css'; // or small.css

const element = document.getElementById('recorder-container');
const recorder = new Recorder({
  target: element,
  props: {
    type: 'camera', // camera, screen, screencamera
    accessToken: '81cca05e-0ebe-4819-9b13-5e92271ade59',
    externalUserId: 'user-id-512',
    language: 'da', // en, da, de
    showProgress: true,
    progressCallback: (progress) => {
      console.log(progress);
    }
  }
});

FAQs

Package last updated on 18 May 2022

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc