-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
426 lines (385 loc) · 13 KB
/
index.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
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="description"
content="21no.de provides open-source, JavaScript and Node.js-based technology for building faster and simpler core components for tomorrow's architectures. Empowering developers to innovate with faster JavaScript-based technologies."
/>
<!-- Favicon and Fonts -->
<link rel="icon" type="image/x-icon" href="logo-v2.png" />
<link href="https://fonts.googleapis.com/css?family=Outfit" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@400;500&display=swap" rel="stylesheet" />
<title>21no.de</title>
<style nonce="MyStyle">
* {
box-sizing: border-box;
}
a {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
a:focus {
outline: 1px dotted;
outline: 5px auto -webkit-focus-ring-color;
}
a:focus-visible {
outline: 5px auto -webkit-focus-ring-color;
}
@media (min-width: 1000px) {
.project {
width: calc(30%);
}
.highlight {
width: calc(30%);
}
}
@media (max-width: 1000px) {
.projects {
flex-direction: column;
}
.project {
width: calc(100% - 20px);
}
.highlight {
width: calc(100% - 20px);
}
.highlights {
flex-direction: column;
}
}
body {
font-family: Outfit, sans-serif;
margin: 0;
padding: 0;
background-color: #f2f2f2;
}
.container {
max-width: 1100px;
margin: 0 auto;
padding: 50px;
text-align: center;
background-color: white;
}
.header h1 {
font-size: 36px;
margin: 0;
}
.header h2 {
font-size: 18px;
color: gray;
margin: 0;
}
.mission {
font-style: italic;
color: gray;
margin-top: 50px;
font-size: 13px;
line-height: 1.5;
padding-left: 50px;
padding-right: 50px;
}
.highlights {
display: flex;
justify-content: space-between;
margin-bottom: 50px;
}
.highlight {
border-radius: 10px;
background-color: white;
padding: 20px;
text-align: center;
box-shadow: 0 0 5px 0 gray;
margin-top: 20px;
margin-right: 10px;
margin-left: 10px;
}
.logo {
border-radius: 10px;
background-color: white;
padding: 20px;
text-align: center;
box-shadow: 0 0 10px 0 rgb(246, 241, 241);
margin-right: 10px;
margin-left: 10px;
margin-bottom: 20px;
}
h1,
h2,
h3 {
font-weight: 500;
}
h3 {
font-size: 18px;
}
.highlight p {
font-size: 14px;
color: gray;
margin: 10px;
line-height: 20px;
}
.projects {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin-bottom: 50px;
}
.project {
border-radius: 10px;
background-color: white;
padding: 20px;
text-align: center;
box-shadow: 0 0 3px 0 rgb(165, 165, 165);
margin-top: 20px;
margin-right: 10px;
margin-left: 10px;
}
.project h3 {
margin-bottom: 5px;
margin-top: 2px;
}
.project p {
font-size: 14px;
color: gray;
margin: 10px;
line-height: 20px;
}
.project a {
display: block;
margin-top: 20px;
margin-right: 40px;
margin-left: 40px;
padding: 10px 10px;
background-color: #7faae9;
color: white;
text-decoration: none;
border-radius: 5px;
}
.button-container {
margin-top: 50px;
margin-bottom: 10px;
text-align: center;
}
.large-button {
display: inline-block;
padding: 15px 40px;
background-color: #696f69;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 18px;
font-weight: 500;
text-decoration: none;
box-shadow: 0 0 10px 0 gray;
}
.founder-avatar img {
border-radius: 50%;
width: 50px;
height: 50px;
margin: 0;
}
.project-avatar img {
border-radius: 25%;
width: 150px;
height: 150px;
margin: 0;
}
.footer {
text-align: center;
background-color: #f2f2f2;
color: #1c1b1b;
padding: 40px;
}
.header {
background-color: #333;
color: #fff;
text-align: center;
padding: 20px;
}
</style>
</head>
<body>
<header class="header">21no.de - Build the internet with faster and simpler JavaScript 🚀</header>
<div class="container">
<img src="logo-v2.png" alt="Logo" class="logo" height="300" />
<div>
<h1>Software components for the 21 century!</h1>
</div>
<h3>Empowering developers to innovate with faster JavaScript and Node.js based technologies</h3>
<div class="highlights">
<div class="highlight">
<h3>Supporting free and open-source</h3>
<p>
We promote free and open-source software components, allowing developers to easily use, modify, and
contribute to the project.
</p>
</div>
<div class="highlight">
<h3>Performance and efficiency</h3>
<p>
Our components are designed with performance and efficiency in mind, ensuring that your applications run
smoothly and quickly.
</p>
</div>
<div class="highlight">
<h3>Simpler and foundational building blocks</h3>
<p>
We strive to provide foundational building blocks that are simpler and easier to use, allowing developers to
focus on building their applications rather than reinventing the wheel.
</p>
</div>
</div>
<h2>SaaS Solutions</h2>
<div class="projects">
<div class="project">
<span class="project-avatar">
<img src="projects/jwt-keys-generator.svg" width="200" />
</span>
<h3>JWT-Keys Generator</h3>
<img
alt="GitHub Repo stars"
src="https://img.shields.io/github/stars/BackendStack21/jwt-keys-generator-api"
/>
<a href="https://jwt-keys.21no.de/">Official Website</a>
<p>
A Reliable, Free JWT Signing/Verification Key Generator Using OpenSSL.
<br /><br />
Generate JWT signing and verification keys effortlessly with our trusted, user-friendly tool backed by
OpenSSL.
</p>
</div>
<div class="project">
<span class="project-avatar">
<img src="projects/r7-logo.png" width="200" />
</span>
<h3>Realtime Pub/Sub</h3>
<a href="https://realtime.21no.de/">Official Website</a>
<p>
Realtime Pub/Sub is a platform that easily enables your applications with realtime Pub/Sub capabilities via
WebSockets.
<br /><br />
<i
>A free and commercial SaaS solution, aimed at supporting open-source development and innovations at
21no.de.</i
>
</p>
</div>
<div class="project">
<span class="project-avatar">
<img src="projects/idp.svg" width="200" />
</span>
<h3>Identity Provider</h3>
<a href="https://idp.21no.de/api">Official Website</a>
<p>
The service offers a streamlined approach to user and device authentication, designed with an emphasis on
scalable and lightweight methods.
<br /><br />
<i
>A free and commercial SaaS solution (in development), aimed at accelerating the adoption of secure
authentication methods.</i
>
</p>
</div>
</div>
<h2>Trending projects</h2>
<div class="projects">
<div class="project">
<span class="project-avatar">
<img src="projects/restana-logo.svg" width="200" />
</span>
<h3>restana</h3>
<img alt="npm" src="https://img.shields.io/npm/dw/restana" />
<a href="https://github.com/BackendStack21/restana">View on GitHub</a>
<p>
Restana is a lightweight and fast Node.js framework for building RESTful APIs. Inspired by Express, it
provides a simple and intuitive API for routing, handling requests and responses, and middleware management.
It is designed to be easy to use and integrate with other Node.js modules, allowing developers to quickly
build scalable and maintainable APIs.
</p>
</div>
<div class="project">
<span class="project-avatar">
<img src="projects/fast-gateway-logo.svg" width="200" />
</span>
<h3>fast-gateway</h3>
<img alt="npm" src="https://img.shields.io/npm/dw/fast-gateway" />
<a href="https://github.com/BackendStack21/fast-gateway">View on GitHub</a>
<p>
Fast-gateway is an easy to use Node.js API gateway framework built to handle large scale API traffic with
great performance and scalability. Written with JavaScript, it is a framework for the masses!
</p>
</div>
<div class="project">
<span class="project-avatar">
<img src="projects/0http-logo.svg" width="200" />
</span>
<h3>0http</h3>
<img alt="npm" src="https://img.shields.io/npm/dw/0http" />
<a href="https://github.com/BackendStack21/0http">View on GitHub</a>
<p>
0http is a lightweight and extremely fast Node.js framework for building RESTful APIs. Highly optimized for
throughput, barely extending core HTTP interfaces, the framework is a great candidate for solutions that
require low latency and performance.
</p>
</div>
<div class="project">
<span class="project-avatar">
<img src="projects/keycloak-backend-logo.svg" width="200" />
</span>
<h3>keycloak-backend</h3>
<img alt="npm" src="https://img.shields.io/npm/dw/keycloak-backend" />
<a href="https://github.com/BackendStack21/keycloak-backend">View on GitHub</a>
<p>
A Node.js connector library for Keycloak. The module simplifies the integration of backend services,
providing a foundation for high-performance authorization middlewares.
</p>
</div>
<div class="project">
<span class="project-avatar">
<img src="projects/restana-static-logo.svg" width="200" />
</span>
<h3>restana-static</h3>
<img alt="Docker Pulls" src="https://img.shields.io/docker/pulls/kyberneees/restana-static" />
<a href="https://github.com/BackendStack21/restana-static">View on GitHub</a>
<p>
Efficiently serve static files using Node.js and Docker containers:
https://itnext.io/restana-static-serving-the-frontend-with-node-js-beyond-nginx-e45fdb2e49cb
</p>
</div>
<div class="project">
<span class="project-avatar">
<img src="projects/http-cache-middleware-logo.svg" width="200" />
</span>
<h3>http-cache-middleware</h3>
<img alt="npm" src="https://img.shields.io/npm/dw/http-cache-middleware" />
<a href="https://github.com/BackendStack21/http-cache-middleware">View on GitHub</a>
<p>
High performance connect-like HTTP cache middleware for Node.js. So your latency can decrease to single
digit milliseconds 🚀
</p>
</div>
</div>
<div class="button-container">
<a class="large-button" href="https://github.com/BackendStack21">More GitHub Projects</a>
<br /><br />
<img alt="GitHub Org's stars" src="https://img.shields.io/github/stars/BackendStack21?style=social" />
</div>
</div>
<footer class="footer">21no.de © 2022 - 2025 | <a href="mailto:[email protected]">Contact Us</a></footer>
<script type="text/javascript" src="https://cdn.cookie-script.com/s/28dc51cd1b79414f499d222fffd2095d.js"></script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-FLVYSDM624"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-FLVYSDM624");
</script>
</body>
</html>