docs(typescript): rename http-*-service-hono template references to http-*-handler-hono#1138
Merged
ericgregory merged 3 commits intowasmCloud:mainfrom May 4, 2026
Conversation
…ler-hono Tracks the template renames in wasmCloud/typescript#632: http-service-hono becomes http-handler-hono and the same suffix change applies to the blobstore, filesystem, kv, and logging variants. The "service" suffix collided with wasmCloud's defined notion of a service (a long-running, stateful Wasm binary), and these are stateless HTTP-handler components. "handler" matches the WIT export name (wasi:http/incoming-handler). Updated: - Template paths in docs/examples.mdx (table, anchors, source links, wash new --subfolder commands), and prose ("HTTP Service component" -> "HTTP Handler component") - TypeScript interface guides (configuration, blob-storage, key-value-storage, index): template paths, world names, build output filenames, and the "HTTP service project" prose mention The existing TCP echo example keeps its "service" wording because it truly is a wasmCloud service. Signed-off-by: Eric Gregory <eric@cosmonic.com>
✅ Deploy Preview for dreamy-golick-5f201e ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
…rage.mdx Co-authored-by: Victor Adossi <123968127+vados-cosmonic@users.noreply.github.com> Signed-off-by: Eric Gregory <eric@cosmonic.com>
…e-storage.mdx Co-authored-by: Victor Adossi <123968127+vados-cosmonic@users.noreply.github.com> Signed-off-by: Eric Gregory <eric@cosmonic.com>
ricochet
approved these changes
May 4, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The
servicesuffix is likely to create confusion with wasmCloud's defined notion of a service. This PR updates documentation to track the TypeScript template renames in wasmCloud/typescript#632:http-service-hono→http-handler-honohttp-blobstore-service-hono→http-blobstore-handler-honohttp-filesystem-service-hono→http-filesystem-handler-honohttp-kv-service-hono→http-kv-handler-honohttp-logging-service-hono→http-logging-handler-honoThe TCP echo example keeps its
servicewording because it truly is a wasmCloud service.Coordinated with: