Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

streamlabs-redis-bridge

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

streamlabs-redis-bridge - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

README.md

10

config_sample.json
{
"tmi": {
"channels": [
"laddspencer"
],
"username": "phantsbot"
},
"redis": {

@@ -13,3 +7,5 @@ "hostname": "localhost",

},
"credsPath": "/path/to/creds.json"
"streamlabs": {
"creds_path": "/path/to/creds.json"
}
}

@@ -19,3 +19,3 @@

constructor(redisHost, redisPort, channelPrefix) {
this.streamlabsChannelPrefix = `${channelPrefix}.streamlabs`;
this.streamlabsChannelPrefix = (!channelPrefix)?('streamlabs'):(`${channelPrefix}.streamlabs`);
this.handlerMap = {

@@ -22,0 +22,0 @@ [FOLLOW_EVENT]: this.onFollowHandler.bind(this),

@@ -19,6 +19,8 @@ #!/usr/bin/nodejs --harmony

const defaultConfig = {
credsPath: './creds.json',
redis: {
hostname: 'localhost',
port: '6379'
},
streamlabs: {
creds_path: './creds.json',
}

@@ -152,3 +154,3 @@ };

function launch(config) {
let creds = getCreds(config.credsPath);
let creds = getCreds(config.creds_path);
let publisher = new StreamlabsEventPublisher(config.redis.hostname,

@@ -155,0 +157,0 @@ config.redis.port,

{
"name": "streamlabs-redis-bridge",
"version": "1.0.0",
"version": "1.0.1",
"description": "Interface to Streamlabs events via Redis pub/sub.",

@@ -5,0 +5,0 @@ "main": "index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc