
Product
Introducing Rust Support in Socket
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.
plex-control
Advanced tools
Node module used to control Plex clients. Utilises the Plex Media Server HTTP API/Control.
var PlexControl = require("plex-control").PlexControl;
// having Plex Media Server on 192.168.0.1
// and client wanting to control with hostname "mac-mini"
var control = new PlexControl("192.168.0.1", "mac-mini");
// ..or assigning client by IP address
control = new PlexControl("192.168.0.1", "192.168.0.2");
Promise based
Each command returns a promise which gets resolved when command was delivered successfully by the Plex API or rejected when any error occured.
control.navigation.moveUp().then(function(){
// moveUp was successfully communicated to Plex
}, function(err){
console.err('Error while communicating with HTTP API', err);
});
The commands are pretty much self describing and identical to what the HTTP API offers.
Navigation
control.navigation.moveUp();
control.navigation.moveDown();
control.navigation.moveLeft();
control.navigation.moveRight();
control.navigation.pageUp();
control.navigation.pageDown();
control.navigation.nextLetter();
control.navigation.previousLetter();
control.navigation.select();
control.navigation.back();
control.navigation.contextMenu();
control.navigation.toggleOSD();
Playback
control.playback.play();
control.playback.pause();
control.playback.stop();
control.playback.rewind();
control.playback.fastForward();
control.playback.stepForward();
control.playback.bigStepForward();
control.playback.stepBack();
control.playback.bigStepBack();
control.playback.skipNext();
control.playback.skipPrevious();
Currently
What's currently happing on the client?
control.currently.playing();
control.currently.paused();
It resolves to an object representing what's currently playing/paused. The object has lots of details about the given media. Hints of what's available in these gigantic detailed media representations can be found on the XML example on the StatusSessions page in the unofficial Plex API documentation.
control.currently.playing().then(function(result){
if (!result) {
console.log("Nothing is currently playing");
} else {
console.log("Currently playing a %s titled: %s",
result.attributes.type,
result.attributes.title);
}
});
getClientInfo(name | IP)
Returns a promise containing the info about the client matched by either the name or IP-address provided. Rejects with a NotFoundError
if client was not found.
control.api
which holds a reference to the underlying plex-api instance,
has gotten a major upgrade. Read more especially about the XML -> JSON changes done in plex-api between v1.0 and v2.0.
getClientInfo()
rejects with a NotFoundError
instead of resolving to an undefined
value. To check whether or not
the error is a NotFoundError you could check err.name === 'NotFound'
or compare the error instance against the exposed
NotFoundError constructor from this module (require('plex-control').NotFoundError
).
(The MIT License)
Copyright (c) 2013-2014 Phillip Johnsen <phillip@lightweight.no>
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
Controlling Plex clients through the Plex Media Server HTTP API
The npm package plex-control receives a total of 0 weekly downloads. As such, plex-control popularity was classified as not popular.
We found that plex-control demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.
Product
Socket’s precomputed reachability slashes false positives by flagging up to 80% of vulnerabilities as irrelevant, with no setup and instant results.
Product
Socket is launching experimental protection for Chrome extensions, scanning for malware and risky permissions to prevent silent supply chain attacks.