Add WASM support to the library #61
Replies: 2 comments 5 replies
-
One of the long-term goals is to be able to run scalpel on a browser, so there is no need for the browser to externally query and API endpoint to dissect the packets that it's receiving, it can do so directly internally. |
Beta Was this translation helpful? Give feedback.
-
One may look at something like following - Honestly my knowledge about whole WASM space is rather limited. :-) |
Beta Was this translation helpful? Give feedback.
-
WASM is a way to bring performant languages to the web, and provide alternatives for Javascript. Making the library WASM compatible will enable the library to be used in web applications and help widen adoption.
This can optionally be done by making the entire library
#![no_std]
.Beta Was this translation helpful? Give feedback.
All reactions