-
Notifications
You must be signed in to change notification settings - Fork 345
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Invalid non-string/buffer chunk #25
Comments
@EvanOxfeld turns out that sometimes weird things arrive to the readable-stream:
|
I've been getting this too With a setup of something like var rs = fs.createReadStream(filename);
rs.on('data', function(data) {
console.log(data);
}).on('close', function() {
console.log('close');
});
rs.pipe(unzip.Parse()); I get the following output
so it looks like a stream somewhere is accepting input after being closed I've reverted to |
I have the same issue with bower 0.9.2 and node 0.10.3 - it throws an error on all zip files when trying to install https://github.com/opitzconsulting/angular-jqm |
@danielzzz Same issue here, don't think it's specific to the packages you're using. Looks like the Bower guys are aware of it: #16 (comment) |
Same problem in Node v0.10.32, almost a year and a half after this issue was reported. |
Also getting this issue with anything that uses streams - very weird. node 0.10.32 |
Same problem here... |
Same problem in Node 7.4.0 |
Same problem in Node 6.9.2 |
Got the same problem in Node v11.14.0 is there a fix yet? |
I get this problem using a steam created with streamifier. |
Since
0.1.6
there's been a lot of errors like this.One of the packages that have this issue is:
http://reality.sgiweb.org/maxw/tmp/bower/Open_Sans.zip
With
0.1.5
it works with the above zip file. Also works with common tools to extract zip files on OS.Unfortunately,
0.1.5
is not compatible with node0.10.x
.The text was updated successfully, but these errors were encountered: