Which type of scripting used in Rust and WebAssembly

In case of RUST and WebAssembly, index.js file is which type of scripting.Whether client side scripting or server side scripting?

client-side
using webassembly doesn't require any kind of server-side scripting

1 Like

Actually it depends. It just creates wasm file, which may be run directly in browser - which is client-side in this case. However both js and wasm can be run on server side - eg via Node.js, so in such case it could be run as server side software.

1 Like

yes that's true somehow assumed "webassembly in browser"

2 Likes

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.