惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

The GitHub Blog
The GitHub Blog
A
About on SuperTechFans
The Cloudflare Blog
G
Google Developers Blog
博客园_首页
Martin Fowler
Martin Fowler
Apple Machine Learning Research
Apple Machine Learning Research
L
LangChain Blog
D
Docker
C
Check Point Blog
T
Tailwind CSS Blog
博客园 - 司徒正美
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Hugging Face - Blog
Hugging Face - Blog
Microsoft Security Blog
Microsoft Security Blog
V
V2EX
博客园 - 叶小钗
T
The Blog of Author Tim Ferriss
酷 壳 – CoolShell
酷 壳 – CoolShell
IT之家
IT之家
M
MIT News - Artificial intelligence
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - 【当耐特】
GbyAI
GbyAI

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Introduction to Dinghy: a Swiss-army knife for everyday e...
mrduguo · 2026-05-13 · via DEV Community

If you ship anything for a living — diagrams, infrastructure, docs, slide decks — you have probably noticed that each of those things lives in its own world, with its own toolchain, its own opinionated editor, and its own subtle ways to drift out of sync.

Dinghy is an open-source toolchain that puts all of them under one roof. One CLI. One install. One consistent way to describe what you want as code and let the tools deliver the final artwork.

What it is

A Swiss-army knife for engineers who like writing code more than clicking through dialogs:

  • Diagram as Code — render architecture diagrams to draw.io.
  • Infrastructure as Code — render OpenTofu / Terraform from React TSX.
  • Site Builder — author docs sites with Docusaurus, live-preview them, deploy to S3.
  • Slide Builder — author RevealJS presentations in YAML / Markdown / HTML, with Prezi-style zoom-and-pan as a Dinghy-exclusive bonus.

It is powered by Deno and Docker, so you do not need to babysit Node versions, Python virtualenvs, Terraform providers, or any of the rest of it.

From a DevOps engineer's bench

Dinghy was built by a DevOps engineer, so it is shaped to walk with your code across the whole software development lifecycle — from local development through to CI/CD — instead of stopping at the edge of one stage.

How it is shaped

Dinghy splits cleanly into a thin CLI and a fat engine that runs in Docker. The CLI is what you install on your machine; the engine is a versioned image that ships every dependency Dinghy needs.

curl -fsSL https://get.dinghy.dev/install.sh | sh

Enter fullscreen mode Exit fullscreen mode

That single command gets you the CLI. From then on, everything Dinghy does happens inside the engine image — which means every machine on your team gets the exact same versions of Deno, Node, OpenTofu / Terraform, and every TF provider, pinned through a single .dinghyrc file.

DINGHY_ENGINE_VERSION=0.1...

Enter fullscreen mode Exit fullscreen mode

One lock. Predictable versions. No more "it works on my laptop" — and no more two-year-old projects you can't rebuild because the dependencies have rotted away.

Who it's for

Anyone who needs to write code for any of this work — a diagram, a piece of infrastructure, a docs site or web app, a slide deck. You do not need to use them all, and you do not need to use them all the time. Reach for one when that is all you need; pull in a few when the work spans more than one.

If any of that sounds useful for what you are building, the rest of this series digs into each capability one post at a time (coming soon — links will go live as each post is published):

  1. Why React for IaC? — the origin of the Dinghy project and core concept.
  2. Diagram as Code — author architecture diagrams as TSX components.
  3. Infrastructure as Code — 248 lines of Terraform from 8 lines of source.
  4. Site Builder — from one Markdown file to a deployed site.
  5. Slide Builder — RevealJS in YAML, with Prezi-style zoom.
  6. Dinghy in the AI age — still relevant? How it works alongside AI.

Ready to set sail?

curl -fsSL https://get.dinghy.dev/install.sh | sh

Enter fullscreen mode Exit fullscreen mode

Guides and examples are at https://dinghy.dev.