You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: examples/README.md
+11-7Lines changed: 11 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,13 +7,17 @@ at once.
7
7
8
8
## Module Map
9
9
10
-
| Module | ABI style | What it is good for |
11
-
|--------|-----------|---------------------|
12
-
|[`rust/`](rust/)| Native vmod-wasm host functions plus raw Proxy-Wasm ABI | Learning the low-level imports exposed by vmod-wasm and testing execution limits |
13
-
|[`proxy-wasm-filter/`](proxy-wasm-filter/)| Rust `proxy-wasm` SDK | A readable starter filter with request, response, local response, and body callbacks |
14
-
|[`passthrough/`](passthrough/)| Raw Proxy-Wasm ABI | Baseline lifecycle module for smoke tests and overhead checks |
15
-
|[`transform/`](transform/)| Raw Proxy-Wasm ABI | Minimal response-header mutation without the SDK |
16
-
|[`edge-security-filter/`](edge-security-filter/)| Rust `proxy-wasm` SDK | Integration-test fixture covering config, metrics, shared data, callouts, body callbacks, and local responses |
10
+
-[`rust/`](rust/) uses native vmod-wasm host functions plus a small raw
11
+
Proxy-Wasm ABI filter. Read it when you want low-level imports or execution
12
+
limit tests.
13
+
-[`proxy-wasm-filter/`](proxy-wasm-filter/) uses the Rust `proxy-wasm` SDK.
14
+
Read it first if you want the normal SDK shape.
15
+
-[`passthrough/`](passthrough/) is a no-op raw Proxy-Wasm ABI module for
16
+
lifecycle smoke tests and overhead checks.
17
+
-[`transform/`](transform/) is a minimal response-header mutation using direct
18
+
Proxy-Wasm ABI imports.
19
+
-[`edge-security-filter/`](edge-security-filter/) is the realistic fixture:
20
+
config, metrics, shared data, callouts, body callbacks, and local responses.
17
21
18
22
For production edge security deployments, use the standalone
0 commit comments