We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug command 'npx gramma server install' fails:
res.body.pipe(str).pipe(fileStream) ^ TypeError: res.body.pipe is not a function
To Reproduce install gramma with node 18.16.0 & npm 9.5.1
Expected behavior It should download the file
Screenshots
Desktop (please complete the following information):
Additional context Seems to work if I replace this slice of code in downloadFile.js (L30):
return new Promise((resolve, reject) => { res.body.pipe(str).pipe(fileStream) res.body.on("error", (err) => { reject(err) }) fileStream.on("finish", () => { bar.stop() resolve() }) })
by
await pipeline(res.body, str, fileStream) bar.stop()
with const { pipeline } = require('node:stream/promises');
const { pipeline } = require('node:stream/promises');
The text was updated successfully, but these errors were encountered:
Any progress here? The bug also hurts me
Sorry, something went wrong.
caderek
No branches or pull requests
Describe the bug
command 'npx gramma server install' fails:
To Reproduce
install gramma with node 18.16.0 & npm 9.5.1
Expected behavior
It should download the file
Screenshots
Desktop (please complete the following information):
Additional context
Seems to work if I replace this slice of code in downloadFile.js (L30):
by
with
const { pipeline } = require('node:stream/promises');
The text was updated successfully, but these errors were encountered: