Link

Yack Plugin Framework Models

IPlugin

The starting point for Yack plugins. All plugins must implement IPlugin interface.

Plugin modules will eventually export a single or multiple IPlugin implementations, such as below:

const plugins: IPlugin[] = [
    new MyYackPlugin()
];
export default plugins;

Authentication

OAuth Debugger

OAuth Playground

CLICK ME
    console.log("hello world");

Session Management

PluginSession

SessionContainer