Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@stonegray/plugin-detect

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@stonegray/plugin-detect

Get information from installed VST and AU plugin

  • 0.0.8
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
14
increased by366.67%
Maintainers
1
Weekly downloads
 
Created
Source

plugin-detect

Get information from installed VST and AU plugins

plugin-detect scans the plugin directories on the system, and collects information about each available plugin. It supports VST, VST3, and AU, with full support for Audio Units containing multiple effects and instruments, such as WavesShell (400+ effects!), and the built-in CoreAudio effects. (eg. AUDelay, AURountripAAC)

This library provides an async function as an ES module, and only supports macOS.

Working with Ableton? Also try @stonegray/ableton-detect

Examples

Basic example:

import scanPlugins from `plugin-detect`;

console.log(await scanPlugins());

Output:

[
    {
        name: 'OneKnob Wetter (s)',
        manufacturer: 'Waves',
        version: '11.0.0',
        minimumOsVersion: '10.0',
        identifier: 'com.WavesAudio.WaveShell1-AU.11.0.0',
        relPath: 'WaveShell1-AU 11.0.component',
        absPath: '/Library/Audio/Plug-Ins/Components/WaveShell1-AU 11.0.component',
        icon: '/Library/Audio/Plug-Ins/Components/WaveShell1-AU 11.0.component/Contents/Resources/WaveShell1-AU 11.0.icns',
        type: 'AU',
        arch: [ 'x64' ],
        componentCount: 448,
        description: 'Plugin_description',
        system: false,
        errors: [],
        ok: true
    },
    ... 772 more
]

Error handling

In the unlikely event that this plugin encounters an unexpected issue while reading plugins, it will output a link which can be used to quickly report the error on the issue tracker, and automatically neccessary information.

Any errors will be thrown normally after this link is generated.

Keywords

FAQs

Package last updated on 25 Mar 2024

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc