node-chunking-streams icon indicating copy to clipboard operation
node-chunking-streams copied to clipboard

A set of NodeJS streams aimed on chunking data

Results 4 node-chunking-streams issues
Sort by recently updated
recently updated
newest added

I'm running the following code on [hip_main.dat](http://cdsarc.u-strasbg.fr/viz-bin/Cat?I/239#sRM2.1) (50+ mb) and sometimes the chunks are broken up into two `'data'` events. ``` javascript var fs = require('fs'); var chunking = require('chunking-streams');...

enhancement

I'm splitting files into multiple chunks, is there a way to put them back together?

**Issue** SizeChunker._finishChunk is not waiting for SizeChunker._startIfNeededAndPushData to finish first (chunkStart to finish). It results in following error. **Code** ``` javascript var path = require("path"); var fs = require("fs-extra"); var...