-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathHttpParrot.html
32 lines (32 loc) · 920 Bytes
/
HttpParrot.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/icons/icon16.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>hrishix6 | HttpParrot</title>
</head>
<body>
<div id="root"></div>
<script id="template" type="x-tmpl-mustache">
curl -X {{method}} \
{{#headers}}
-H "{{name}} : {{value}}" \
{{/headers}}
{{#formdata}}
-F "{{name}}={{value}}" \
{{/formdata}}
{{#json}}
-d '{{{json}}}'
{{/json}}
{{#urlEncoded}}
-d "{{urlEncoded}}" \
{{/urlEncoded}}
"{{url}}"
</script>
<script src="/js/beautify.min.js"></script>
<script src="/js/beautify-css.min.js"></script>
<script src="/js/beautify-html.min.js"></script>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>