Abhinandan Udupa
Abhinandan Udupa
> My apologies for the delay. No need to apologise! I am guilty too. > Do you have a working example of YEW running SSR on a native Rust web...
Perhaps, we can use this example to demonstrate `tokio` multi-threading in `WasmEdge` as alluded to [here](https://github.com/WasmEdge/WasmEdge/issues/1429#issue-1228619466)?
Hi, I am _really sorry_ for the very late response! Looking through the example code, I think it is an example for a server that can handle multiple clients (not...
I have tried to use the `futures` crate's `block_on` method to complete the rendering and then return the string ```rust use futures::executor::block_on; fn render() -> String { let renderer =...
But is my understanding of the example code right? Then we won't be able to use Yew SSR, or will we? I will try using other similar libraries.
Hey @rotk2022, I am waiting for the [threads proposal](https://github.com/WasmEdge/WasmEdge/releases/tag/0.10.1-alpha.1) to be implemented in WasmEdge [stable release] > I think it is not a good first issue right now. Yes, I...
Would [Licence Eye](https://github.com/marketplace/actions/license-eye) be good?
Alright. ``` // SPDX-FileCopyrightText: 2022 Profian Inc. // SPDX-License-Identifier: AGPL-3.0-only ``` Is this the licence header that is used in all files, or specific files? Or do we have other...
```powershell # Download our pre-built LLVM 13 binary $llvm = "LLVM-13.0.1-win64.zip" curl -sLO https://github.com/WasmEdge/llvm-windows/releases/download/llvmorg-13.0.1/LLVM-13.0.1-win64.zip -o $llvm Expand-Archive -Path $llvm ``` https://wasmedge.org/book/en/extend/build_on_windows.html#prepare-the-environment @hydai We should be removing the part where we...
Ok, will do it then.