🎨 Nutra Card Renderer Active

This is a standalone, high-performance card rendering service running on port 3005. It accepts HTML templates via POST requests and renders them into crisp, professional PNG infographics using headless Puppeteer.

How to test rendering:

You can execute a test render directly in your browser:

Run Test Render (GET /test)

API Endpoint:

POST /render

Payload structure:

{
  "html": "<html><body>Your HTML here</body></html>"
}

Response structure:

{
  "status": "success",
  "imageBase64": "iVBORw0KG..."
}