Wow! The integration with rayon for data parallelism is especially interesting, and I imagine that could be a killer feature for some people looking to accelerate compute-heavy node.js code without having to deal with the nastiness of parallelism in C++, or C++ at all.
I don't believe the blog post announcing Rayon ever made it to HN, so here's a convenient link: http://smallcultfollowing.com/babysteps/blog/2015/12/18/rayo...
Neon: Node plus Rust
11–20 of 71 posts
Re: Neon: Node plus Rust
#12I wonder what makes it osx only? very cool project though, hope it takes off. I wish there was a way on github to watch a project at a level where you could just get notified of new releases.
Re: Neon: Node plus Rust
#13I wonder what makes it osx only? very cool project though, hope it takes off. I wish there was a way on github to watch a project at a level where you could just get notified of new releases.
Only that Dave only has access to OS X. I plan on contributing Linux support if nobody else beats me to it.
Re: Neon: Node plus Rust
#14Re: Neon: Node plus Rust
#15Re: Neon: Node plus Rust
#16I've been very excited to see this project develop. I think it really speaks to what we can do with Rust in the future: once we get some nice abstractions, "FFI" barely even feels like it. Node is actually the worst case here: V8 being in C++ makes this harder than Ruby or Python, being implemented in C.
Re: Neon: Node plus Rust
#17I wonder what makes it osx only? very cool project though, hope it takes off. I wish there was a way on github to watch a project at a level where you could just get notified of new releases.
Only that Dave only has access to OS X. I plan on contributing Linux support if nobody else beats me to it.
Re: Neon: Node plus Rust
#18Does anyone know what is the difference between using this neon vs using node-ffi[1]? [1] https://github.com/node-ffi/node-ffi
node-ffi seems to be for adding a bridge between an existing non-Node module dynamic library and node, which at the very least seems to incur some non-negligible overhead; see the "Call Overhead" section of your link.
Re: Neon: Node plus Rust
#19Could be killer if combined with electron.