Source
examples/fridge-notes/ — MIT-licensed. Two files: server.js and README.md.Run it
https://notes.<your-name>.meradomo.com.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
A runnable sample app that publishes itself through Meradomo and reads visitor identity — no sign-in code.
examples/fridge-notes/ — MIT-licensed. Two files: server.js and README.md.cd examples/fridge-notes
node server.js
https://notes.<your-name>.meradomo.com.
const res = await fetch('http://127.0.0.1:8765/publish', {
method: 'POST',
headers: { 'content-type': 'application/json' },
body: JSON.stringify({ name: 'notes', label: 'Fridge Notes', localPort: port }),
});
// 202 pending → poll GET /publish/notes until { status: 'live', url }
const email = req.headers['x-meradomo-email'] || null; // verified, non-forgeable