Hi,
I'm not sure what a "framework based on node.js" would be, exactly. What would you want to do with it? Embed Chez Scheme in a Node.js application?
One fact that might me relevant is that Racket's branch of Chez Scheme can be compiled for WebAssembly via Emscripten. (Instructions here: <
https://github.com/racket/ChezScheme/blob/1a5532700a6302b7c03468256f32ad7407cd243c/BUILDING#L497-L544>.) However, Chez built this way lacks the full power the compiler, which is a notable downside. There are details in the documentation. Targeting WebAssembly as a backend directly would certainly be interesting.
Of course, you could also run `scheme` in a separate process and communicate it via IO, or you could embed Chez Scheme as a Node.js extension using their respective C APIs.
-Philip