npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

slobs-websocket-js

v0.2.1

Published

SLOBS Websocket Javascript API

Downloads

11

Readme

slobs-websocket-js

Streamlabs OBS websocket controller built on obs-websocket-js

Installation

# NPM Install
npm install slobs-websocket-js

# Yarn Install
yarn add slobs-websocket-js

Usage

Untested in browser, currently supported in node.

Node Import Methods

// CommonJS
const SLOBSWebSocket = require("slobs-websocket-js");

Connecting

  • Address is optional default: 127.0.0.1
  • Port is optional default: 59650
  • Path is optional default: api
  • Token is required
    • Get this in Settings -> Remote Control, click the QR Code and show details
const slobs = new SLOBSWebSocket();

slobs.connect({
  address: "127.0.0.1",
  port: 59650,
  path: "api",
  token: "l33t0k3n",
});

Requests

All available requests can be found from checking the slobs-client documentation

  • Method is required and can be found from slobs-client
  • Params is required for specificing the service and for passing optional args
slobs.send("method", { params }); // Returns a promise
slobs.sendCallback("method", { params }, callback); // Callback returns (err, data)

// Example
slobs.send("makeSceneActive", {
  service: "ScenesService", // Service
  args: ["fakeSceneId-1235-12351"], // Args (id)
});

Events

When listening for events you currently need to include the service and method seperated by a period

obs.on("Service.Method", (data) => callback(data));

Errors

WebSocket errors besides the initial socket connection will be thrown as uncaught errors. All other errors can be caught using .catch() when sending request and by using the below example to catch any other error.

obs.on("error", (err) => {
  console.error("socket error:", err);
});

Example Usage

const SLOBSWebSocket = require("slobs-websocket-js");
const slobs = new SLOBSWebSocket();

slobs
  .connect({
    address: "127.0.0.1",
    port: 59650,
    path: "api",
    token: "l33t0ken",
  })
  .then(() => {
    console.log("Connected to SLOBS Websocket Server");

    return slobs.send("sceneSwitched", {
      resource: "ScenesService",
    });
  })
  .then((data) => {
    console.log(data);
  })
  .catch((err) => {
    console.log(err);
  });

slobs.on("ScenesService.sceneSwitched", (data) => {
  console.log(`New Active Scene: ${data.name}`);
});