Electron\'s website says that the applications made with electron can have access to node modules. Can they have access to the D3 library? If so, how can it be set up?
We solved this in our workteam installing d3 with Npm:
npm install d3 --save
and in index.html we put this:
We were getting this issue from nv.d3.js line 18, there is a little function requiring d3 as a node module and in our app we were using it in bower_components, so installing it with npm and requesting in your index directly from node_modules like as I said will probably solve this issue as it did with us.