error in curl demo
danielepolencic opened this issue · 2 comments
danielepolencic commented
I was intrigued by the post on strongloop's blog, so I tried the curl demo with
~$ node showcase/curl/curl-zone.js
Unfortunately, I get the following error:
/private/tmp/zone/lib/binding.js:37
return realBinding(name);
^
Error: No such module
at process.binding (/private/tmp/zone/lib/binding.js:37:14)
at Object.<anonymous> (/private/tmp/zone/lib/node-lib/native_module.js:25:32)
at Module._compile (module.js:456:26)
at Object.Module._extensions..js (module.js:474:10)
at Module.load (module.js:356:32)
at Function.Module._load (module.js:312:12)
at Module.require (module.js:364:17)
at require (module.js:380:17)
at Object.<anonymous> (/private/tmp/zone/lib/require.js:4:20)
at Module._compile (module.js:456:26)
Any idea on what I'm doing wrong?
tonistiigi commented
You are probably using node v0.10
. Zone only works with v0.11+
.
danielepolencic commented
You're right. Thanks.