Code Monkey home page Code Monkey logo

Comments (6)

bryanmacfarlane avatar bryanmacfarlane commented on May 23, 2024

https://github.com/Microsoft/typed-rest-client/blob/master/test/httptests.ts#L85

The key is it pipes a stream to a file (or another stream) so matter how large the file is, it will stream it chunk by chunk.

from typed-rest-client.

bryanmacfarlane avatar bryanmacfarlane commented on May 23, 2024

Closing since question answered. Let us know if you have issues.

from typed-rest-client.

mmajcica avatar mmajcica commented on May 23, 2024

Thanks @bryanmacfarlane I'll try this right away!

from typed-rest-client.

bryanmacfarlane avatar bryanmacfarlane commented on May 23, 2024

The other key is the server - hopefully it's streaming the contents but most should. Most servers don't timeout out as long as the stream is moving data.

from typed-rest-client.

bryanmacfarlane avatar bryanmacfarlane commented on May 23, 2024

NP :)

from typed-rest-client.

mmajcica avatar mmajcica commented on May 23, 2024

The example you pointed will not work. We are not awaiting for the stream write to finish.

I'll post the example and the solution, as it may help others. Check if you agree.

//
// Http get piping to another stream
// response message is an IncomingMessage which is a stream
//
cm.heading('get request and pipe stream');
let file: NodeJS.WritableStream = fs.createWriteStream(sampleFilePath);
(await httpc.get('https://httpbin.org/get')).message.pipe(file);
body = fs.readFileSync(sampleFilePath).toString();
cm.outputHttpBinResponse(body);

In this case we are not awaiting the file stream to finish. I found out that the following approach is necessary:

const file: NodeJS.WritableStream = fs.createWriteStream(filePath);
const response = await this.client.get(url);

await new Promise((resolve, reject) => {
	file.on("error", reject);
	file.on("finish", resolve);

	response.message.pipe(file);
});

If you have a better suggestion, I'll be happy to see it.

What if we implement another method on IHttpClientResponse like saveBodyToFile?

from typed-rest-client.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.