Vibecode Placid

track this build5 phases, 10 steps, beginner friendly
YES · one-shottable
price $19/moyou'd save $228/yrbuild time one sittingcategory 🏞️ og imagesreplaced by 0 people

Same engine as the Bannerbear build: satori and resvg render a template with data into a PNG for free. The editor, the video output and the many integrations are what Placid charges for.

the project pack5 files · written for this build, step by step
README.md
# Placid · indie build

A template-to-image service with a spreadsheet mindset: templates as code, batch rendering from CSV, and a signed HTTP endpoint with a cache. The same engine as the Bannerbear build, plus the CSV step Placid users think in.

Estimated effort: **one sitting**. Work `BUILD_PLAN.md` top to bottom · every phase ends in a check that has to pass before the next one starts.

## Stack

| Part | Choice | Why |
| --- | --- | --- |
| Rendering | satori, @resvg/resvg-js, sharp | no headless browser |
| Runtime | Node 22 | a CLI and one endpoint |

## Before you start

Have every one of these ready. The plan assumes them from step one.

- [ ] **Node.js 22 or newer** · free
  - Why: Everything in this build runs on it: the server, the scripts, the tests.
  - Get it: Download the LTS installer from nodejs.org, or install with your package manager (brew install node, or nvm install 22). Restart the terminal afterwards.
  - Verify: node --version prints v22 or higher
- [ ] **A terminal and a code editor** · free
  - Why: Every step below is a command you type or a file you edit.
  - Get it: VS Code (code.visualstudio.com), Cursor or Zed. Open a folder for the project and use the editor's built-in terminal.
  - Verify: You can open a folder and run a command in its terminal
- [ ] **Git** · free
  - Why: History for your code, and the way most hosts deploy.
  - Get it: Install from git-scm.com or with your package manager, then run git init in the project folder once it exists.
  - Verify: git --version prints a version
- [ ] **Font files for your templates** · free
  - Why: satori needs files.
  - Get it: Google Fonts, committed to the repo.
- [ ] **A CSV of rows to render** · free
  - Why: Phase 2 renders one image per row.
  - Get it: Export from your spreadsheet: one column per template field plus a name column.
- [ ] **An HMAC signing key** · free
  - Why: For the endpoint.
  - Get it: openssl rand -hex 32.
- [ ] **A small always-on server (VPS)** (optional) · about $5 a month
  - Why: This needs one process running all the time with a public address.
  - Get it: Hetzner Cloud (from about 4 EUR), DigitalOcean or Fly.io. Ubuntu 24.04, the smallest size. You need SSH access and a public IP. Only needed for the deploy phase; develop locally first.
- [ ] **Caddy on the server** (optional) · free
  - Why: Automatic HTTPS in front of the Node process. Without TLS the browser features this relies on (and your visitors' trust) do not work.
  - Get it: On the VPS: follow the install steps at caddyserver.com/docs/install for Ubuntu. One Caddyfile with your domain and a reverse_proxy line is the whole config.
  - Verify: caddy version prints a version on the server

## Quick start

```sh
mkdir placid-diy && cd placid-diy && git init && npm init -y && npm pkg set type=module && npm install satori@0.29.0 @resvg/resvg-js@2.6.2 sharp@0.35.3 csv-parse@5
mkdir -p templates renders fonts && cp .env.example .env
```

Then copy `.env.example` to `.env` and fill in the values it documents.

## Honest limits

This build deliberately does not replace:

- The editor, video, the integrations catalogue.
- the drag-and-drop template editor
- video rendering
- WordPress, Webflow, Ghost and Zapier integrations
- hosted delivery

If one of those is essential to you, that is the reason to keep paying for Placid, and the README should say so rather than pretend.

$ choose a build depth, inspect the files, then open the complete pack in your agent

why people still pay

Non-developers design the template and connect a form; nobody writes a satori tree.

what you lose

xthe drag-and-drop template editor

xvideo rendering

xWordPress, Webflow, Ghost and Zapier integrations

xhosted delivery

prior art · use these instead of building, if you'd rathersatoriHTML and CSS to SVG
share on X ↗"I just replaced Placid ($19/mo) with one prompt"
questions
Vibecode Placid

Yes. A competent AI coding agent (Claude Code, Codex, Cursor) can build a usable personal Placid replacement in one session with the prompt on this page. It runs on your own machine or server with no subscription.

How much does Placid cost?

Placid costs about $19/month (Basic, checked 2026-09-04), which is $228 per year. That's what you save by replacing it with one prompt.

What do I lose by replacing Placid?

Honestly: the drag-and-drop template editor; video rendering; WordPress, Webflow, Ghost and Zapier integrations; hosted delivery. If any of those are load-bearing for you, keep paying.

Is there an open-source alternative to Placid?

Yes: satori (HTML and CSS to SVG). Using prior art is also vibecoding; the prompt is for when you want it exactly your way.