Michael Goldman
Michael Goldman
In the instant case I may need to use a deployment web server that is not able to provide this facility. I understand streaming may not be supported in this...
I've fixed this bug along with #101, which is the same issue. I've hopefully attached the diff here, as I do not currently have privilege to create a pull request....
You could use https://github.com/gopherjs/gopherjs. Similar to Python zomes, as demonstrated by https://github.com/pythagorean/PyHoloWorld.
Add to webpack.config.js: ``` const crypto = require("crypto"); const crypto_orig_createHash = crypto.createHash; crypto.createHash = algorithm => crypto_orig_createHash(algorithm == "md4" ? "sha256" : algorithm); ``` This should fix the error.