You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 13, 2024. It is now read-only.
I'm completely new to Napa.js. I want to compare the efficiency of napa.js with node.js in terms of making and storing ethereum transactions. Some steps would be to make https requests for a node to make an ethereum transaction. Does Napa.js currenlty support the https , 'express' and web3 modules that Node.js has?
If these modules are not supported by Napa yet, is it possible to combine napa and node zones to still achieve the multi-threading effect?
Thanks!
The text was updated successfully, but these errors were encountered:
v0.4.0-pre has limited support on node built-in modules.
However, it is not necessary to use 'https' and other node's IO modules in napa zones/workers. A typical pattern is to handle request in main thread and dispatch the process work to zone via zone.execute(). I am not familiar with ethereum; if handling ethereum transactions requires heavy javascript computation, this pattern should work well.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I'm completely new to Napa.js. I want to compare the efficiency of napa.js with node.js in terms of making and storing ethereum transactions. Some steps would be to make https requests for a node to make an ethereum transaction. Does Napa.js currenlty support the https , 'express' and web3 modules that Node.js has?
If these modules are not supported by Napa yet, is it possible to combine napa and node zones to still achieve the multi-threading effect?
Thanks!
The text was updated successfully, but these errors were encountered: