usememos-memos
- Description:
Memos: Take control of your notes with Memos' open-source, self-hosted platform! Enjoy complete privacy, zero cost, and blazing speed. Perfect for personal and team use without compromises!
- Copyright:
- 2026 Eyevinn Technology AB
Methods
(async, static) createUsememosMemosInstance(context, body) → {UsememosMemos}
- Description:
Create a new Memos instance
Example
import { Context } from '@osaas/client-core';
import { createUsememosMemosInstance } from '@osaas/client-services';
const ctx = new Context();
const body: UsememosMemosConfig = { name: 'myinstance', ... };
const instance = await createUsememosMemosInstance(ctx, body);
console.log(instance.url);
Parameters:
| Name | Type | Description |
|---|---|---|
context |
Context | Open Source Cloud configuration context |
body |
UsememosMemosConfig | Service instance configuration |
Returns:
- Service instance
- Type
- UsememosMemos
(async, static) getUsememosMemosInstance(context, name) → {UsememosMemos}
- Description:
Get a Memos instance
Example
import { Context } from '@osaas/client-core';
import { getUsememosMemosInstance } from '@osaas/client-services';
const ctx = new Context();
const instance = await getUsememosMemosInstance(ctx, 'myinstance');
console.log(instance.url);
Parameters:
| Name | Type | Description |
|---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the memos to be retrieved |
Returns:
- Service instance
- Type
- UsememosMemos
(async, static) removeUsememosMemosInstance(context, name)
- Description:
Remove a Memos instance
Parameters:
| Name | Type | Description |
|---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the memos to be removed |