import Client from "@minodisk/medkit"; (async () => { const client = new Client(); const postId = await client.createPost( "
Text
", ); const html = await client.readPost(postId); // -> "Text
" or "Text
" await client.updatePost( postId, "Modified
", ); await client.destroyPost(postId); await client.close(); })();