> node examples/server.js
module.js:340
throw err;
^
Error: Cannot find module '../build/Release/dns_sd_bindings'
at Function.Module._resolveFilename (module.js:338:15)
at Function.Module._load (module.js:280:25)
at Module.require (module.js:364:17)
at require (module.js:380:17)
at Object.<anonymous> (/Users/danielgross/Desktop/nodetunes/node_modules/mdns/lib/dns_sd.js:32:22)
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)
even after doing an npm install.
Looking in node_modules/mdns/build, there's no Release directory, only Debug.
I'm seeing
even after doing an
npm install
.Looking in
node_modules/mdns/build
, there's noRelease
directory, onlyDebug
.My solution was to
Maybe there's a way to work around this in
package.json
or a note should be added toREADME.md
?