I'm running a browser node with js-ipfs
by importing the js library from a CDN. I'm adding a file by calling ipfs.add()
and I've set a parameter option { pin: false }
to help with debugging.
I am logging dataReceived
and dataSent
as given by the ipfs.bitswap.stat()
function.
So as soon as I add a file, data sent begins to increase, up to approximately the size of the file I just added.
Why is this? Where is my node sending the file to?