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

plex-webhooks

v0.1.6

Published

Server for receiving plex webhooks. Useful for automation or action related local scripting.

Downloads

7

Readme

plex-webhooks v.0.1

Introduction

The plex-webhooks library is used to build an Express 4 based server written in TypeScript for handling webhooks generated by Plex servers. For more information on these webhooks see: Plex Webhooks.

Philosophy

This package is intended to aid in setting up an express server to process Plex Webhooks. User implemented Plex webhook handlers can be registered with the server for dispatch on certain events. The library should provide for easy extension of an existing express server or easy setup of a new one.

Quick Start

  1. Install the plex-webhooks library into your package.
npm install --save plex-webhooks
  1. Setup a config/ directory and config file(s). These are read by plex-webhooks using the config NPM package. For example, your config/default.json might look like:
{
  "server": {
    "name": "plex-monitor",
    "version": "0.1.0",
    "port": 3344
  },
  "plex": {
    "logdir": "/tmp/plex",
    "uploads": "/tmp/plex/uploads"
  }
}

Note: the plex.logdir path is where the webhook handler will log the incoming request JSON payloads. The plex.uploads path is where the multer will deposit any uploaded files (like posters).

  1. Write your application. Here is a really basic example:
import { server, MulterFiles, PlexDispatcher } from 'plex-webhooks';

// note we are using "any" type for the "payload" but future versions will ideally provide interfaces
// for the various events that might be handled
async function handleMediaPlayEvent(payload: any, files: MulterFiles): Promise<void> {
  console.log('Media play event occurred.');
}
PlexDispatcher.getInstance().register('media.play', handleMediaPlayEvent);

const app = server.app();
app.listen(server.port, () => console.log(server.msg.good));

Example config/default.json

{
  "server": {
    "name": "plex-monitor",
    "version": "0.1.0",
    "port": 3344
  },
  "plex": {
    "logdir": "/tmp/plex",
    "uploads": "/tmp/plex/uploads"
  }
}

Important! This is ALPHA

This is currently alpha, just a serious start to get the ball rolling, things may change. Post feature requests and bugs to Issues.