discussions Search Results · user:sindresorhus language:swift archived:false is:public language:Swift is:unmerged is:unmerged
Filter by
265 results
insindresorhus (press backspace or delete to remove)Some qualifiers in your query (language, archived) are not supported when searching discussions. Try searching for repositories instead?
:
What would you like to discuss?
For internal business use, I interact with a closed source, third party Restful API. Performances are good but stability
was very fine until recently.
In a nutshell, this ...
:
Hi. I m using got on an express server where I want to serve a file from another URL. What I have is:
got.stream(url, {}).pipe(res).on( finish , () = {
res.end();
})
However, it creates something ...
:
I am looking for a changelog or release notes for each version. I do not see when in the repository. Specifically, I am
looking to see what was changes from v10.7.0 to v11.8.2
:
https://github.com/sindresorhus/got/blob/main/documentation/10-instances.md
How do I fix the typing differences between the real code and what the typescript tells me?
image image
:
What would you like to discuss?
Hello,
I am replacing request-promise with got in my package:
https://github.com/ehmad11/netsuite-rest/blob/master/netsuite-rest.js
I was using transform method of request-method ...
:
Something like axios interceptors is very important to the project I m currently working on. Does ky have something
similar?
:
I m running into a case in my production system that I m having a hard time reproducing, so I thought I d ask what the
system was designed to do.
I m using got to make a request with the cache option ...
:
As comparison table shows the only feature the project lacks is browser support. Why is that?
:
I m aware of the event / pipe based usage, however there s another way of consuming the ReadableStream (that may be more
simple in some cases):
type TypedStream = Request {
[Symbol.asyncIterator](): ...
:
Hello, I am using got to do some data preparation/ cleanup via api for a bunch of e2e tests (webdriverio).
I have been using post, put, delete and get calls so far. Now I have a specific scenario where ...