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

vmix-function-list

v27.0.1

Published

Complete function list for vMix. All available functions to call to the vMix API.

Downloads

51

Readme

vmix-function-list

Complete list of available functions in vMix. Structured list read out from https://www.vmix.com/help25/ShortcutFunctionReference.html and from inside vMix > Settings > Shortcuts.

package json version npm version

The version number of this repository reflects which version number of vMix the repository is updated for.

When a new patch or version is released to vMix, it is the plan that I check through the help files (and/or vMix itself) for whether new functions has been added to the vMix API, and this function list will be updated accordingly.

Methods

.all() - Returns a complete list of available functions in the vMix API.

.category(category: string) - Returns a list of available functions in a given category from the vMix API.

.get(function: string) - Returns a single function with a given name from the vMix API.

See examples or tests for more info.

Rendered list

In the rendered/ directory you can find .json files of rendered complete list of function, either as minified or in regular format with indentation.

Installation and use

As a dependency using npm

The repo is published at npmjs, meaning that you can easily add the utilities as a dependency in your frontend project. Found here: https://www.npmjs.com/package/vmix-function-list

npm install vmix-function-list --save # or 'yarn add vmix-function-list -d'

In your code the simplest way to import the module is the following:

const VmixFunctionList = require('vmix-function-list')

// List of all functions
console.log('All functions', VmixFunctionList.all())

// Get specific function (case-insensitive)
console.log('Get specific function: Cut', VmixFunctionList.get('cut'))
console.log('Get specific function: SetText', VmixFunctionList.get('SetText'))

Examples


Authors

Jens Stigaard

Contribution

You are more than welcome to contribute to the repository! If you find any inconsistencies or missing functions, you are welcome to tell about it in an issue or make a pull request with the desired changes.