fstream icon indicating copy to clipboard operation
fstream copied to clipboard

Advanced FS Streaming for Node

Results 33 fstream issues
Sort by recently updated
recently updated
newest added

When piping fstream.Reader() into tar.Pack() fstream ignores long pathnames on windows. The calling code looks like this, but the problem seems to be on fstream side of the pipe, because...

I am trying to set up a pipeline getting a tgz file from S3, unzipping it, untarring it, and uploading the results back to S3. This works fine until the...

If you use `fstream.Reader({ path: , type: 'Directory' })` and `tar` to tar up a directory whose first entry is a non-writeable file, you can't untar it with `tar`. It...

Using some clever instrumentation, I have traced all the calls to mkdirp for the root directory for a module being written by `fstream`. My gut tells me that it's doing...

When a caller hits [this stat failure](https://github.com/isaacs/fstream/blob/master/lib/writer.js#L284), it takes considerable sleuthing to figure out why the stat was even happening. Wrapping the error message up with some explanatory text would...

Hello, I am trying to figure out a way to only fire one 'end' event when piping multiple files to fstream.Reader. Is there a better way to handle this? ```...

`getChildProps` incorrectly sets the `follow` based on `this.follow`, shouldn't it be `this.props.follow`? https://github.com/isaacs/fstream/blob/master/lib/dir-reader.js#L212 `follow` on `this` or `me` is not being set anywhere. This causes wrong behaviour when using `follow:...

The `fstream` streams interface is more than just a little different from the usual streams2 one. Feels to me like there isn't no base class for processing the stream coming...

``` > 315 error Failed to parse json > 315 error Unexpected end of input > 316 error File: /.npm/fstream/0.1.22/package/package.json > 317 error Failed to parse package.json data. > 317...

I have directory like: ``` bar/ foo.txt baz.bin dir/ another.txt ``` and I do something like ``` js var reader = fstream.Reader({path: source, type: "Directory"}), writer = fstream.Writer(path.join(source,'test.tgz')), pack =...