api-service-1000#
A tiny hono HTTP API that depends on
hello-world.
import { greet } from "hello-world";
app.get("/greet/:name", (c) => c.text(greet(c.req.param("name"))));
GET /→Hello, world!GET /greet/:name→Hello, <name>!
If hello-world changes greet's signature, these call sites break — the
upstream change dep-watch is built
to catch and propose a fix for.
Run#
npm install
npm start