-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
158 lines (154 loc) · 4.56 KB
/
index.html
File metadata and controls
158 lines (154 loc) · 4.56 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Even - Open Source Application for WebSocket APIs</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background: #f4f4f9;
}
.header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
.header h1 {
margin: 0;
font-size: 2em;
}
.header p {
margin: 5px 0;
}
.container {
padding: 20px;
max-width: 1200px;
margin: 0 auto;
}
.section {
margin-bottom: 40px;
}
.feature-list {
display: flex;
flex-wrap: wrap;
gap: 20px;
}
.feature-item {
background: #fff;
padding: 20px;
border: 1px solid #ddd;
border-radius: 8px;
flex: 1 1 calc(50% - 20px);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.feature-item h3 {
margin-top: 0;
color: #333;
}
.footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 20px;
font-size: 0.9em;
}
.button {
background-color: #4caf50;
color: white;
padding: 10px 20px;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
}
.intro {
margin-bottom: 4vh;
}
.button:hover {
background-color: #45a049;
}
</style>
</head>
<body>
<header class="header">
<h1>Even</h1>
<p>
Open-sourced desktop based application for building & testing WebSocket
APIs
</p>
</header>
<main class="container">
<section class="section">
<h2>About Even</h2>
<p class="intro">
Even is a desktop application designed to simplify the process of
building and testing distributed WebSocket APIs. It securely stores
collections, test cases, and configurations within your codebase,
making it easy to manage and collaborate through Git or any version
control tool of your choice. With Even, you can easily import
configurations directly from AsyncAPI documentation, streamlining
setup and allowing you to focus on development.
</p>
<div
style="display: flex; align-items: center; justify-content: center"
>
<a
href="https://github.com/evenopensource?tab=repositories"
class="button"
>GitHub</a
>
</div>
</section>
<section class="section">
<h2>Why Choose Even?</h2>
<p>
Even is fully offline—no sign-in required and no cloud sync. It
integrates seamlessly with your workflow, allowing you to collaborate
with team members through version control.
</p>
</section>
<section class="section">
<h2>Key Features</h2>
<div class="feature-list">
<div class="feature-item">
<h3>WebSocket Mock Server <span>(V1.0.0)</span></h3>
<p>
Instantly start a WebSocket server to enable front-end developers
to start building collaborative applications without waiting on
back-end server setups.
</p>
</div>
<div class="feature-item">
<h3>WebSocket Proxy Server <span>(V1.2.0)</span></h3>
<p>
Enable Even to act as a proxy for existing WebSocket servers,
allowing you to decouple front-end and back-end development with
ease.
</p>
</div>
<div class="feature-item">
<h3>WebSocket API Client <span>(V1.3.0)</span></h3>
<p>
Includes advanced features like cookie handling and message
processors that go beyond typical API clients, ensuring seamless
authentication and data flow.
</p>
</div>
<div class="feature-item">
<h3>WebSocket Server Testing <span>(V1.4.0)</span></h3>
<p>
The world’s first open-source E2E testing framework for
distributed WebSocket servers, allowing for comprehensive testing.
</p>
</div>
</div>
</section>
</main>
<footer class="footer">
<p>© 2024 Even - Streamline WebSocket API Development</p>
</footer>
</body>
</html>