Skip to content

proxy-wasm/proxy-wasm-cpp-sdk

Folders and files

NameName
Last commit message
Last commit date
Mar 4, 2025
Mar 4, 2025
Jul 31, 2020
Oct 25, 2024
Oct 26, 2024
Oct 10, 2024
Oct 26, 2024
Mar 5, 2020
Feb 29, 2020
Mar 15, 2022
Feb 29, 2020
Apr 29, 2024
Feb 29, 2020
Oct 25, 2024
Feb 29, 2020
Mar 4, 2025
Aug 6, 2024
Jul 14, 2022
Oct 25, 2024
Jan 7, 2025
Aug 5, 2024
Aug 5, 2024
Jun 9, 2021
Oct 28, 2024
Jul 31, 2020
Aug 25, 2020
Oct 25, 2024
Oct 25, 2024
Feb 29, 2020
Jun 2, 2020
Jun 2, 2020
Oct 25, 2024
Oct 25, 2024
Feb 29, 2020
Oct 25, 2024
Oct 25, 2024
Oct 25, 2024
Feb 29, 2020

Repository files navigation

WebAssembly for Proxies (C++ SDK)

Build Status Apache 2.0 License

Proxy-Wasm is a specification and supporting framework for using WebAssembly (Wasm) to extend the functionality of network proxies. It enables developers to write custom logic (plugins) that are compiled to Wasm modules and then loaded and executed by the proxy.

Proxy-Wasm consists of multiple parts:

  • An ABI that specifies the low-level interface between network proxies and Wasm virtual machines that run the plugins.
  • Host implementations of the ABI, provided by network proxies.
  • Language-specific SDKs that layer on top of the ABI, providing a more natural and programmer-friendly API for invoking and implementing Proxy-Wasm functions and callbacks.

This repository provides the C++ SDK.

Getting started