EyalAr / lwip

Light Weight Image Processor for NodeJS
MIT License
2.37k stars 230 forks source link

Use bindings package when requiring node bindingins. Fixes #242 #243

Closed nvartolomei closed 8 years ago

nvartolomei commented 8 years ago

node-gyp uses node build configuration when building addons.

Because lwip was looking only in build/Release folder it wasn't working when installed on a debug build of node.

node-bindings solves this issue, it will look in all possible places where the bindings can be.

EyalAr commented 8 years ago

Cool, thanks @nvartolomei