
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
lavva.exalushome.webcams
Advanced tools
Library implementing webcams and abstraction layers for webcams configuration API in ExalusHome system
WebCams library is a part of exalushome-webcams that allows you to manage web cameras added to TR7 controller.
If you want to use this library in any JavaScript or TypeScript project you can use npm to install it as package from npm repository. For that you will have to use command:
npm install lavva.exalushome.webcams
or
yarn add lavva.exalushome.webcams
If you have installed this package then you have to initialize this library first before usage. To do this, you have to call:
import { IWebCamsService, WebCamConfiguration } from 'lavva.exalushome.webcams/build/js/IWebCamsService';
import { WebCamsService } from 'lavva.exalushome.webcams';
WebCamsService.Init();
The library is based on the DI of exalushome-library, so you need to load the base service from the API, then you can load WebCams Services.
let cams = Api.Get<IWebCamsService>(WebCamsService.ServiceName);
<video id="webCam" autoPlay playsInline muted controls style="width: 100%"></video>
You can do this like that:
// Get web cam object
let cam = await cams.GetWebCamAsync(camDev);
// get miedia stream for given camera
let mediaStream = await cam.GetRTCMediaStreamAsync();
//set media stream to <video> tak by setting srcObject for example in this way:
(document.getElementById("webCam") as HTMLMediaElement).srcObject = mediaStream;
FAQs
Library implementing webcams and abstraction layers for webcams configuration API in ExalusHome system
The npm package lavva.exalushome.webcams receives a total of 29 weekly downloads. As such, lavva.exalushome.webcams popularity was classified as not popular.
We found that lavva.exalushome.webcams demonstrated a healthy version release cadence and project activity because the last version was released less than 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.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.