Experience-Monks / devtool

[OBSOLETE] runs Node.js programs through Chromium DevTools
MIT License
3.76k stars 148 forks source link

Issues with certain modules, possibly related to native addons #98

Closed rob-gordon closed 3 years ago

rob-gordon commented 7 years ago

I'm trying to use devtool with scripts that require node-midi, which is a native addon, a wrapper around the c++ rtmidi library.

miditest.js

var midi = require('midi');

Running $ devtool miditest.js

screen shot 2016-10-19 at 3 45 57 pm

There's no package.json file present so I don't believe it's truly a module mismatch. But I'm having a hard time tracking the error down. I'm just wondering if there are known issues with compiling native addon modules.

Thanks!