/Wiki/sources/honojs__hono/2026/https-hono-dev-llms-full-txt-5-run-2be2e073cfc6-5-run-s0449-c0000.md
5. Run (1) - hono-docs
5. Run (1) Source evidence: /Sources/raw/honojs hono/honojs hono.md Canonical citation: https://hono.dev/llms full.txt 5 run Summary To run your Hono WebAsse...
5. Run (1)
Source evidence: /Sources/raw/honojshono/honojshono.md Canonical citation: https://hono.dev/llms-full.txt#5-run
Summary
To run your Hono WebAssembly HTTP server, you can use any WASI-enabled WebAssembly runtime: - wasmtime - jco (runs in Node.js) In this guide, we'll use jco serve since it's already installed. ::: warning jco serve is...
Content
To run your Hono WebAssembly HTTP server, you can use any WASI-enabled WebAssembly runtime:
wasmtimejco(runs in Node.js)
In this guide, we'll use jco serve since it's already installed.
::: warning
jco serve is meant for development, and is not recommended for production use.
:::
::: code-group
npx jco serve dist/component.wasmyarn jco serve dist/component.wasmpnpm exec jco serve dist/component.wasmbun run jco serve dist/component.wasm:::
You should see output like the following:
$ npx jco serve dist/component.wasm
Server listening @ localhost:8000...Sending a request to localhost:8000/hello will produce the JSON output you've specified in your Hono application.
You should see output like the following: