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

smartview

v0.1.7

Published

BlackMagic SmartView Ethernet Protocol implementation

Downloads

4

Readme

SmartView

Non blocking Blackmagic SmartView Ethernet Protocol implementation in Javascript (written for use with Node.js).

Because SmartView devices only allow one active connection at a time, we open a new connection for each action and close it again when the action is done. This way, when your application is idle (not sending messages to smartview devices), the SmartView will not be blocked and you will be able to connect to it from another application when you use this library.

Installation

npm install smartview

Get information

To get information about a smartview:

var address = "10.1.0.12"
SmartView.getInfo(address, function(error, information) {
	if (error) throw error;
	// do something with the received information information
});

getInfo(address, callback)

  • address

    The address of your smartview

  • callback

A callback funciton that will be called with to arguments: error and information. The information argument will be an object like this: js { model : "SmartView HD", hostname : "SmartViewHD-7c2e0d02ae3e", name : "dPro SmartView HD", monitors : [ { brightness : 255, contrast : 127, saturation : 127, identify : false, border : "Green", widescreenSD : "auto", id : "MONITOR A" } ], inverted : false, dynamicIP : false, staticAddress : "10.1.0.41", staticNetmask : "255.255.255.0", staticGateway : "192.168.0.1", currentAddress : "10.1.0.41", currentNetmask : "255.255.255.0", currentGateway : "192.168.0.1" }

Change tally border

var address = "10.1.0.12"
SmartView.setBorder(address, 'MONITOR A', 'Green', function(error){
	if (error) throw error;
});

setBorder(address, monitor, color, callback)

  • address The address of your smartview

  • monitor The id of the monitor you want to control.

  • color The color of the tally border. You can choose between:

    • "None"
    • "Red"
    • "Green"
    • "Blue"
  • callback A callback funciton that will be called when the tally border is set. When an error occures, for example when the SmartView is not reachable, an error will be provided as the first argument of the callback function.

Auto discovery

To discover SmartViews in your network, add an event listener for the detected event:

SmartView.on('detected', function(address) {
	// use the address for something
})

Then start discovering by calling the startDiscovering method:

SmartView.startDiscovering();