
Security News
US Government Forces Anthropic to Pull Claude Fable Days After Launch
Anthropic says the directive cited national security concerns over a narrow jailbreak, but offered no specific technical details.
@vmosedge/web-sdk
Advanced tools
用于在 Web 端实现高性能 Android 设备远程控制的 SDK。
npm install @vmosedge/web-sdk
# 或
pnpm add @vmosedge/web-sdk
详细使用说明请参考 SDK 文档。
import { VmosEdgeClient, VmosEdgeClientEvents } from "@vmosedge/web-sdk";
// 创建客户端实例
const client = new VmosEdgeClient({
container: document.getElementById("container")!,
mediaType: 2, // 1=仅视频,2=音视频
config: {
ip: "192.168.1.100",
deviceId: "device_001",
ports: {
video: 8000,
audio: 8001,
touch: 8002,
},
},
});
// 监听连接成功事件
client.on(VmosEdgeClientEvents.STARTED, () => {
console.log("设备连接成功!");
});
// 统一监听通道状态
client.on(VmosEdgeClientEvents.CHANNEL_CONNECTED, (event) => {
console.log(event.channel, event.status, event.port);
});
// 启动连接
client.start();
// 运行时启用/禁用音频
await client.enableAudio();
client.disableAudio();
FAQs
Vmos Edge Web SDK
The npm package @vmosedge/web-sdk receives a total of 38 weekly downloads. As such, @vmosedge/web-sdk popularity was classified as not popular.
We found that @vmosedge/web-sdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 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
Anthropic says the directive cited national security concerns over a narrow jailbreak, but offered no specific technical details.

Security News
A network of 152 Chrome live wallpaper extensions hid ad tracking and made extension-driven traffic look like Google search clicks.

Company News
Socket’s first CISO brings deep experience securing high-growth SaaS companies as open source supply chain threats accelerate.