node-mbox icon indicating copy to clipboard operation
node-mbox copied to clipboard

mbox file parser for Node.js

Results 2 node-mbox issues
Sort by recently updated
recently updated
newest added

Hi we use your node-mbox however it was hard to handle finish for async tasks. It is due to misconception of on('message') and on('data') events. Now mbox is passing on...

If a message is bigger than the V8 string length limit (`Math.pow(2, 28)`, ~260mb) the parser will crash with following error: ``` node_modules/node-mbox/src/mbox.js:100 stream.emit('message', 'From ' + chunks.join('')); ^ RangeError:...