npm install openalnode-openal
===========
This addon makes it possible to use the OpenAL library from within a node application.
* node-midi provided a great example of a nicely designed c++-based node module
* nodejs.org addon manual
* This simple OpenAL example
* OpenAL Programmers Guide
* My OpenAL framework is broken, how can I fix it? (OSX Lion)
node-gyp clean && node-gyp configure && node-gyp build --debug
gdb node
(gdb) set args test/stream.js
(gdb) run
Even though node isn't compiled with debug symbols, this got me close enough to the problem when I was getting weird segfaults.