import Client from "@minodisk/medkit"; (async () => { const client = new Client(); const postId = await client.createPost( "

Title

Subtitle

Text

", ); const html = await client.readPost(postId); // -> "

Title

Subtitle

Text

" or "

Title

Subtitle

Text

" await client.updatePost( postId, "

Title

Subtitle

Modified

", ); await client.destroyPost(postId); await client.close(); })();