mirror of
https://github.com/hoppscotch/hoppscotch.git
synced 2026-04-25 08:45:58 +03:00
[GH-ISSUE #61] HTTP request with different library #27
Labels
No labels
CodeDay
a11y
browser limited
bug
bug fix
cli
core
critical
design
desktop
discussion
docker
documentation
duplicate
enterprise
feature
feature
fosshack
future
good first issue
hacktoberfest
help wanted
i18n
invalid
major
minor
need information
need testing
not applicable to hoppscotch
not reproducible
pull-request
question
refactor
resolved
sandbox
self-host
spam
stale
testmu
wip
wont fix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/hoppscotch#27
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @diego81b on GitHub (Aug 25, 2019).
Original GitHub issue: https://github.com/hoppscotch/hoppscotch/issues/61
Originally assigned to: @NBTX on GitHub.
Is your feature request related to a problem?
No
Describe the solution you'd like
Why the need to use xhr instead, for example, Axios.
One factor should be the need to use interceptors before or after request
Describe alternatives you've considered
Any
Additional context
No
@izerozlu commented on GitHub (Aug 28, 2019):
@diego81b I suppose the main reason for this decision is to keep the application as light as possible.
But in my opinion, it'd be easier to maintain the application with a proper library.
@liyasthomas commented on GitHub (Aug 28, 2019):
As I've mentioned in #76 we could possible use anyone from of these:
@NBTX commented on GitHub (Aug 28, 2019):
I vote axios.
@diego81b commented on GitHub (Aug 28, 2019):
Another solution could be use Fetch Api but is not supported on IE11 ( damn IE 😄) and do not have interceptor.
On the same way intersting will be the abort Api (they works with xhr) but it is another matter 😅
@NBTX commented on GitHub (Aug 29, 2019):
As I'm working on building a proxy to bypass the Same-Origin policy, I'm going to address this issue, as axios interceptors will make implementing the proxy much cleaner.