🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis →
Socket
Book a DemoInstallSign in
Socket

@interactify-live/short

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@interactify-live/short

Pure MQTT connector for Interactify short videos - no UI or video dependencies

latest
npmnpm
Version
1.0.7
Version published
Maintainers
1
Created
Source

@interactify-live/short

Pure MQTT connector for Interactify short videos. This package provides only the MQTT connection functionality without any UI, DOM, or video dependencies.

Features

  • Pure MQTT WebSocket connection
  • Real-time message handling
  • Connection status management
  • No UI or video dependencies
  • Lightweight and focused

Connecting to WebSocket

import { Connector } from "@interactify-live/short";

const connector = new Connector();

console.log("connection status", connector.status.get());

connector.status.subscribe((value) => {
  console.log("connection status", value);

  if (value === Connector.CONNECTION_STATUS.CONNECTED) {
    console.log("connected successfully");
    connector.publish("like");
  }
});

connector.connect({
  user_id: "user_id",
  token: "token",
  scope: "short",
  space_slug: "space",
  slug: "slug",
  session: "session",
  display_name: "User Display Name",
});

Keywords

interactify

FAQs

Package last updated on 26 Aug 2025

Did you know?

Socket

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.

Install

Related posts