> ## Documentation Index
> Fetch the complete documentation index at: https://docs.supernote.com/llms.txt
> Use this file to discover all available pages before exploring further.

# getPluginName

> Get pluginname.

```ts theme={null}
getPluginName(): Promise<string | null | undefined>;
```

**Returns**

* `Promise<string | null | undefined>`:pluginname

## Example

```ts wrap theme={null}
import { PluginManager } from 'sn-plugin-lib';

/**
 * Get pluginname example.
 */
export async function exampleGetPluginName() {
 const name = await PluginManager.getPluginName();
 return name;
}
```
