ColinEberhardt / wasmweekly

Website for the WebAssembly weekly newsletter
http://wasmweekly.news/
Creative Commons Zero v1.0 Universal
75 stars 11 forks source link

Speed up your node.js application with SSVM #40

Closed alabulei1 closed 4 years ago

alabulei1 commented 4 years ago

Hi Colin,

The SSVM is a fully-featured WebAssembly VM that is optimized for server-side applications.

https://www.secondstate.io/ssvm/

The SSVM supports WASI to access operating system resources in a controlled manner (ie capability-based security). Similar to WASI, the SSVM supports extensions to WebAssembly to safely access underlying systems — such as a storage interface for attached key/value storage, an AI inference interface for specialized hardware, and the Ethereum interface for a host blockchain.

For developers, SSVM makes it easy to incorporate high-performance Rust functions into Node.js applications.

https://github.com/second-state/SSVM

I'm wondering if SSVM is good for your newsletter. Thanks.