
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
@banuba/webar
Advanced tools
@banuba/webar - Banuba SDK for web.
Check out the Banuba WebAR overview to learn the basics.
Via <script> tag:
<!-- Exposes BanubaSDK variable on window -->
<script src="https://cdn.jsdelivr.net/npm/@banuba/webar/dist/BanubaSDK.browser.js"></script>
<script>
const { Webcam, Player, Dom } = BanubaSDK
Player.create({
clientToken: "PUT YOUR CLIENT TOKEN HERE",
}).then((player) => {
player.use(new Webcam())
Dom.render(player, "body")
})
</script>
Via <script type="module"> tag:
<script type="module">
import {
Webcam,
Player,
Dom,
} from "https://cdn.jsdelivr.net/npm/@banuba/webar/dist/BanubaSDK.browser.esm.js"
Player.create({
clientToken: "PUT YOUR CLIENT TOKEN HERE",
}).then((player) => {
player.use(new Webcam())
Dom.render(player, "body")
})
</script>
npm i --save @banuba/webar
import { Webcam, Player, Dom } from "@banuba/webar"
import wasm from "@banuba/webar/BanubaSDK.wasm"
import simd from "@banuba/webar/BanubaSDK.simd.wasm"
import data from "@banuba/webar/BanubaSDK.data"
Player.create({
clientToken: "PUT YOUR CLIENT TOKEN HERE",
locateFile: {
"BanubaSDK.wasm": wasm,
"BanubaSDK.simd.wasm": simd,
"BanubaSDK.data": data,
},
}).then((player) => {
player.use(new Webcam())
Dom.render(player, "body")
})
Banuba Client token is required to get Banuba SDK Web AR working.
To receive a new trial client token please fill in the form on banuba.com website, or contact us via info@banuba.com.
FAQs
Banuba WebAR SDK
The npm package @banuba/webar receives a total of 2,220 weekly downloads. As such, @banuba/webar popularity was classified as popular.
We found that @banuba/webar demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 7 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.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.