-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
102 lines (96 loc) · 3.65 KB
/
index.html
File metadata and controls
102 lines (96 loc) · 3.65 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Primary SEO -->
<title>
queFork — Fast API Testing for REST, GraphQL, WebSocket & More
</title>
<meta
name="description"
content="queFork is a blazing-fast API testing client for REST, GraphQL, SOAP, WebSocket, SSE, and Socket.IO. Zero setup. Built for developers."
/>
<meta
name="keywords"
content="API testing, REST client, GraphQL client, WebSocket tester, Postman alternative, API development, HTTP client, SOAP testing, SSE client, Socket.IO"
/>
<meta name="author" content="Somrit Dasgupta" />
<meta name="robots" content="index, follow" />
<link rel="canonical" href="https://quefork.com" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://quefork.com" />
<meta
property="og:title"
content="queFork — Fast API Testing for REST, GraphQL, WebSocket & More"
/>
<meta
property="og:description"
content="Blazing-fast API testing client supporting REST, GraphQL, SOAP, WebSocket, SSE, and Socket.IO. Zero setup, built for developers."
/>
<meta property="og:image" content="https://quefork.com/og-image.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:site_name" content="queFork" />
<meta property="og:locale" content="en_US" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:url" content="https://quefork.com" />
<meta
name="twitter:title"
content="queFork — Fast API Testing for REST, GraphQL, WebSocket & More"
/>
<meta
name="twitter:description"
content="Blazing-fast API testing client supporting REST, GraphQL, SOAP, WebSocket, SSE, and Socket.IO. Zero setup."
/>
<meta name="twitter:image" content="https://quefork.com/og-image.png" />
<meta name="twitter:creator" content="@kitsomrit" />
<!-- Favicons -->
<link rel="icon" type="image/x-icon" href="/favicon.ico?v=3" />
<link rel="icon" type="image/png" href="/favicon.png?v=3" />
<link rel="apple-touch-icon" sizes="512x512" href="/icon-512.png?v=2" />
<link rel="manifest" href="/manifest.webmanifest" />
<!-- JSON-LD Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "queFork",
"url": "https://quefork.com",
"description": "Blazing-fast API testing client for REST, GraphQL, SOAP, WebSocket, SSE, and Socket.IO.",
"applicationCategory": "DeveloperApplication",
"operatingSystem": "Web",
"author": {
"@type": "Person",
"name": "Somrit Dasgupta",
"url": "https://github.com/somritdasgupta"
},
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"featureList": [
"REST API Testing",
"GraphQL with Schema Introspection",
"WebSocket & Socket.IO",
"Server-Sent Events (SSE)",
"SOAP XML",
"Pre/Post Request Scripts",
"Environment Variables",
"Collection Management",
"cURL Import/Export",
"14 Language Code Export",
"CORS Proxy Cascade",
"Chrome Extension"
]
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>