├── .github └── workflows │ └── release-binary.yaml ├── .gitignore ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE.md ├── README.md ├── example-project ├── .cargo │ └── config.toml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── examples │ ├── example.rs │ ├── snippets.rs │ └── snippets │ │ └── snippet.js ├── index.html └── src │ └── main.rs ├── flake.lock ├── flake.nix ├── rustfmt.toml ├── src ├── main.rs ├── server.rs ├── server │ └── certificate.rs └── wasm_bindgen.rs └── static └── index.html /.github/workflows/release-binary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakobhellermann/wasm-server-runner/HEAD/.github/workflows/release-binary.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /result 3 | .direnv 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakobhellermann/wasm-server-runner/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakobhellermann/wasm-server-runner/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakobhellermann/wasm-server-runner/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakobhellermann/wasm-server-runner/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakobhellermann/wasm-server-runner/HEAD/README.md -------------------------------------------------------------------------------- /example-project/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakobhellermann/wasm-server-runner/HEAD/example-project/.cargo/config.toml -------------------------------------------------------------------------------- /example-project/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /example-project/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakobhellermann/wasm-server-runner/HEAD/example-project/Cargo.lock -------------------------------------------------------------------------------- /example-project/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakobhellermann/wasm-server-runner/HEAD/example-project/Cargo.toml -------------------------------------------------------------------------------- /example-project/examples/example.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakobhellermann/wasm-server-runner/HEAD/example-project/examples/example.rs -------------------------------------------------------------------------------- /example-project/examples/snippets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakobhellermann/wasm-server-runner/HEAD/example-project/examples/snippets.rs -------------------------------------------------------------------------------- /example-project/examples/snippets/snippet.js: -------------------------------------------------------------------------------- 1 | export function add3(a, b) { return a + b; } 2 | -------------------------------------------------------------------------------- /example-project/index.html: -------------------------------------------------------------------------------- 1 |

hi

2 | -------------------------------------------------------------------------------- /example-project/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakobhellermann/wasm-server-runner/HEAD/example-project/src/main.rs -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakobhellermann/wasm-server-runner/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakobhellermann/wasm-server-runner/HEAD/flake.nix -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakobhellermann/wasm-server-runner/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakobhellermann/wasm-server-runner/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/server.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakobhellermann/wasm-server-runner/HEAD/src/server.rs -------------------------------------------------------------------------------- /src/server/certificate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakobhellermann/wasm-server-runner/HEAD/src/server/certificate.rs -------------------------------------------------------------------------------- /src/wasm_bindgen.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakobhellermann/wasm-server-runner/HEAD/src/wasm_bindgen.rs -------------------------------------------------------------------------------- /static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakobhellermann/wasm-server-runner/HEAD/static/index.html --------------------------------------------------------------------------------