From ddded622b47f5fa7bd5ec6b9eb15686703a8deb4 Mon Sep 17 00:00:00 2001 From: Syrus Date: Wed, 10 Apr 2019 11:34:18 -0700 Subject: [PATCH] Improved README with extra examples --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 35838e4f1..924b062d4 100644 --- a/README.md +++ b/README.md @@ -33,12 +33,18 @@ _**NEW ✨**: You can now embed Wasmer in your Rust application, check our [exam Wasmer can execute both the standard binary format (`.wasm`) and the text format defined by the WebAssembly reference interpreter (`.wat`). -Once installed, you will be able to run any WebAssembly files (_including nginx and Lua!_): +Once installed, you will be able to run any WebAssembly files (_including Lua, PHP, SQLite and nginx!_): ```sh # Run Lua wasmer run examples/lua.wasm +# Run PHP +wasmer run examples/php.wasm + +# Run SQLite +wasmer run examples/sqlite.wasm + # Run nginx wasmer run examples/nginx/nginx.wasm -- -p examples/nginx -c nginx.conf ```