stephen / nodetunes

AirTunes v2 Server implementation
215 stars 64 forks source link

Error: Cannot find module '../build/Release/dns_sd_bindings' #28

Closed danielpgross closed 9 years ago

danielpgross commented 9 years ago

I'm seeing

> 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.

My solution was to

> npm install -g node-gyp
> cd node_modules/mdns
> node-gyp BUILDTYPE=Release rebuild

Maybe there's a way to work around this in package.json or a note should be added to README.md?