Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
@pathfindr.dev/recorder
Advanced tools
This is the pathfindr recorderSDK that you can use to make recordings of the screen, camera or both.
This is the pathfindr recorderSDK that you can use to make recordings of the screen, camera or both.
You can find the full documentation for the recorder and our other products here https://pathfindr.dev/docs.
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,
}
});
// Progress when uploading
recorder.$on('progress', (event) => {
const progress = event.detail;
console.log(progress);
});
// Recording ready to be uploaded or not.
// Default is false
recorder.$on('recordingchange', (event) => {
const recordingReady = event.detail;
console.log(recordingReady);
});
// Recording state changed (inactive, recording, paused)
recorder.$on('statechange', (event) => {
const state = event.detail;
console.log(state);
});
// When you are ready to upload the recording
const uuid = await recorder.upload();
// This will return something like this '4b5811e3-5884-4555-a0ea-1100bbc9909f'.
// You can use the uuid to fetch or stream the recording by using our API or our video player.
FAQs
Record your screen and webcam through the browser! Connect with your students, colleauges, clients on another level! 🤩
The npm package @pathfindr.dev/recorder receives a total of 82 weekly downloads. As such, @pathfindr.dev/recorder popularity was classified as not popular.
We found that @pathfindr.dev/recorder 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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.