
Security News
Deno 2.4 Brings Back deno bundle, Improves Dependency Management and Observability
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
stream-display
Advanced tools
Wrapper around getDisplayMedia to capture screen as a sequence of ImageData objects
A tiny Typescript wrapper around Screen Capture API getDisplayMedia
that sends screen video feed as ImageData
to your desired callback.
npm install stream-display
and then
import StreamDisplay from 'stream-display';
You can take the dist/stream-display.js
file or use a service like unpkg. Example:
<script src="https://unpkg.com/stream-display@latest/dist/stream-display.js"></script>
<script>
const stream = new StreamDisplay(...);
</script>
const processImageData = imageData => {...};
const stream = new StreamDisplay(processImageData);
stream.startCapture();
// ...
stream.stopCapture();
new StreamDisplay(callback, options = {});
callback: (image: ImageData) => any
- A function that takes one argument — image data from the screen capture feedoptions
(optional) — a configuration object, currently can have only one option:
scanInterval: number (ms)
— interval between every callback invocation. Default value — 1000
. NB: when your tab enters background — most browsers will cap the setInterval at 1000ms
maximum. Setting this value lower will not have any effect.await stream.startCapture();
//...
stream.stopCapture();
startCapture()
will trigger the screen capture modal and as soon as user accepts — start sending the ImageData
. On error will return a rejected Promise
with the error. A list of possible exceptions can be found on MDN.
stopCapture()
— ends the capture session
stream.isCapturing // => boolean
This library is using tape
as a test runner. Tests themselves are also written in typescript and launched using ts-node
.
To run the tests simpy launch
npm run test
If you want to debug the tests, you can use the following configuration (VSCode):
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"args": [
"${workspaceRoot}/tests/StreamDisplay.test.ts"
],
"runtimeArgs": [
"-r",
"ts-node/register"
],
"cwd": "${workspaceRoot}",
"protocol": "inspector",
"internalConsoleOptions": "openOnSessionStart",
"env": {
"TS_NODE_IGNORE": "false"
}
}
To build the library locally you need to
npm install
npm run build
A fresh build will be waiting for you in the /dist
folder.
FAQs
Wrapper around getDisplayMedia to capture screen as a sequence of ImageData objects
The npm package stream-display receives a total of 41 weekly downloads. As such, stream-display popularity was classified as not popular.
We found that stream-display demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.