This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

TypeScript 100.0%
2 1 0

Clone this repository

https://tangled.org/0xdaali.tngl.sh/hello-world_ https://tangled.org/did:plc:rerulww6s52lg2wcsozb6xui
git@tangled.org:0xdaali.tngl.sh/hello-world_ git@tangled.org:did:plc:rerulww6s52lg2wcsozb6xui

For self-hosted knots, clone URLs may differ based on your setup.



README.md

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/:nameHello, <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