Skip to content
#

http-client

Here are 1,482 public repositories matching this topic...

hoppscotch
JoelJacobStephen
JoelJacobStephen commented Aug 24, 2020

Describe the bug
When I pull the resize button of the code editor, it doesn't the resize the code in the editor.

To Reproduce
Steps to reproduce the behavior:

  1. Click the resize button on the code editor and drag it down
  2. The code doesn't resize

Expected behavior
I expected the code to resize as I drag down the button.

Screenshots
If applicable, add screenshots to

insomnia
sfabriece
sfabriece commented Jan 18, 2021

Is your feature request related to a problem? Please describe.
I'm always frustrated when Insomnia does not remember my last used URL importing routes from a URL

Describe the solution you'd like
Insomnia should remember the last used URL when importing routes. It's unlikely that it'll change often.

Describe alternatives you've considered
None

Additional context
![image

node-fetch
armeria
trustin
trustin commented Dec 31, 2020

A user can easily serve a static file in an annotated service as follows:

@Get("...")
@Head("...")
HttpResponse getFile(ServiceRequestContext ctx) {
    return HttpFile.of(...).asService().serve(ctx, ctx.request());
}

However, it'd be even nicer if a user can do this:

@Get("...")
@Head("...")
HttpFile getFile() {
    return HttpFile.of(...);
}

Improve this page

Add a description, image, and links to the http-client topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the http-client topic, visit your repo's landing page and select "manage topics."

Learn more