Socket
Socket
Sign inDemoInstall

prointerface

Package Overview
Dependencies
19
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    prointerface

A Javascript interface to interact with ProPresenter


Version published
Maintainers
1
Install size
1.81 MB
Created

Readme

Source

ProInterface

Use Javascript to interact with ProPresenter.

Tested with ProPresenter 6.

To initialise:

var pro = proInterface('127.0.0.1', 50001, 'control');

proInterface needs a network address (use 127.0.0.1 for the current machine), a port number (ProPresenter's default is 50001) and a password. It'll then handle opening and authorising the connection.

pro.on('authReceived', function (error, controlStatus) {
  pro.on('newSlide', function (slideDetails) {
    ...
  });
  pro.getStageDisplayLayouts(function (layouts, current) {
    ...
  });
  pro.setStageDisplayLayout('Default');
});

FAQs

Last updated on 25 May 2016

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc