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

loupedeck-commander

v1.0.2

Published

A system to ease working with LoupeDeck devices using CMD-line interfaces

Downloads

3

Readme

loupedeck-commander

Getting started

The loupedeck-commander is helping you using your Loupedeck device more easily, and connect it with custom commands you define with script files.

Features:

  • Reference image files for every state of your button in the touch-display fields
  • Connect commands to your state transitions
  • Tested with following LoupeDeck devices:

Runs on:

  • Linux (Tested with Ubuntu 22.04 and Debian 11/12 on x64 & arm32/arm64)
  • Windows (Tested with Windows 10/11 on x64)

Small footprint

  • Raspberry PI Zero is suitable to run this

Please take care about the following:

  • LoupeDeck devices after version 0.2.x use a serial interface instead of WebSocket. When using this library please upgrade your firmware using the LoupeDeck Software Tested with Firmware version version 0.2.5

Basic Usage

Do the following steps:

# init your new node package
npm init

# install the loupedeck-commander dependency
npm install -s loupedeck-commander 

Create a new configuration file with at least one profile or copy from here, and replace the image references with your own icons (90x90px size):

Create a index.mjs file to open up your loupedeck connection:

# save as index.mjs
import { BaseLoupeDeckHandler } from 'loupedeck-commander'

const handler = new BaseLoupeDeckHandler('config.json')

const stopHandler = () => {
  console.log('Receiving SIGINT => Stopping processes.')
  handler.stop()
}

// Initiating a process
process.on('SIGINT', stopHandler)

await handler.start()

Run the script using the following command:

node index.mjs

If you end up with errors related to canvas module - please install the dependencies as mentioned below, and run npm install -s again

Hints

CANVAS Module - additional effort needed

The library is using canvas to load images and render graphical content on the LoupeDeck devices. Please follow the instructions to install the preconditions, to properly use canvas on your system.

Example for Ubuntu:

# different build & graphic dev-libs are needed to use canvas module:
sudo apt-get install build-essential libcairo2-dev libpango1.0-dev libjpeg-dev libgif-dev librsvg2-dev

Resizing of images

The buttons images shown on the different buttons should be prepared with specific resolutions:

  • Main/Center Touch-Area: 90px x 90px per Button
  • Left/Right Touch-Area: 90px x 270px per Button
  • LoupeDeck CT Knob Touch-Area: 240px x 240px Button

if you already have suitable icons with the right aspect ratio, you could resize them with imagemagick/mogrify:

mkdir resized
mogrify -resize 90x90 -quality 100 -path resized *.png