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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@contactci/com.contactci.coreconductor

v2.3.12

Published

C# wrapper library for interacting with the Maestro Windows service

Readme

Maestro Core Conductor

This is a thin P/Invoke wrapper around the C++ legacycore DLLs. With this you can develop C# applications against the Maestro Windows service.

Installation

This package includes ContactCI.Maestro.libcore as a dependency. This is hosted in the same repo, and should automatically download as part of the nuget restore operation.

The libcore package contains the C++ DLLs as a reusable component. This is intended for non-C# applications to consume.

These libraries are also published as NPM packages.

Usage

First, call MaestroSessionManager.StartSession, which will return true if the Windows service is alive and offers the client a session. There is a corresponding StopSession to de-register your client with the service. Please ensure your client application can gracefully handle all exit conditions and closes its session properly.

From there, the functions are mostly self-explanatory.

Internally, the current haptic state is stored in a section of memory shared between the service and client. An event system notifies the clients and host when a state change has happened or is requested, respectively. The state object which is exposed by this API is a copy of that state, so you'll need to rely on the events to make sure you're current.

To subscribe to haptic state change events, you must call StartHapticWatcher. This spawns a Task on the thread pool that waits on the named event and dispatches events. To cancel this thread, you must call StopHapticWatcher. StopSession will internally stop the haptic watcher if it is active.

To read the current haptics, call GetHaptics. You'll get a haptic state struct for each hand, or null if that hand is not present.

The SetHaptics call is similar, though you must explicitly tell the service which hand to apply haptics to. This immediately signals the service to apply haptics to the selected glove, if it's online.

Developing

See BUILDING.md (only available internally)