-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
261 lines (255 loc) · 11.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sisk - Lightweight .NET Web Framework</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=REM:wght@200;300;400;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://maxst.icons8.com/vue-static/landings/line-awesome/line-awesome/1.3.0/css/line-awesome.min.css">
<link rel="shortcut icon" href="/assets/img/Icon.png">
<link href="/assets/app.css?__nocache=3" rel="stylesheet">
<script src="/assets/prism.js?__nocache=3"></script>
</head>
<body>
<header>
<div class="container contents">
<a href="/" class="logo">
<img src="/assets/img/Icon.png" alt="">
<h1>
Sisk Framework
</h1>
</a>
<label for="navVisible" class="nav-toggle">
<i class="las la-bars"></i>
</label>
<div class="nav-links">
<input type="checkbox" id="navVisible">
<a href="/">
Home
</a>
<a target="_blank" href="https://docs.sisk-framework.org/">
Get Started
</a>
<a target="_blank" href="https://blog.sisk-framework.org/">
Blog
</a>
<a href="https://github.com/sisk-http">
<i class="lab la-github"></i>
</a>
</div>
</div>
</header>
<main class="container lp-wrapper">
<section id="principal">
<div>
<h1>
Fast.<br>
Robust.<br>
Predictable.
</h1>
<p>
Sisk is a lightweight web framework designed for fast and robust development, which
allows you to take the full control of what you want to do.
</p>
<a class="button featured" href="https://docs.sisk-framework.org/" target="_blank">
Get started
</a>
<a class="button alt" href="https://github.com/sisk-http">
Contribute
</a>
</div>
<img src="/assets/img/Presentation.png" alt="">
</section>
<section id="first-alternative">
<pre><code class="lang-csharp">
using Sisk.Core.Http;
using Sisk.Core.Routing;
class Program
{
static void Main(string[] args)
{
using var app = HttpServer.CreateBuilder(port: 5555)
.UseRouter(r =>
{
r.MapGet("/", request =>
{
return new HttpResponse("Hello, world!");
});
})
.Build();
app.Start();
}
}
</code></pre>
<div>
<h1>
Robustness hidden in its simplicity.
</h1>
<p>
Sisk allows you to create quick or
large projects with as little code
as possible, quickly, focused on
enabling development your way.
</p>
<p>
With Sisk you can create:
</p>
<div class="icons">
<div class="icon">
<img src="/assets/img/icons8/icons8-module-80.png" alt="">
<div>
Microservices
</div>
</div>
<div class="icon">
<img src="/assets/img/icons8/icons8-rest-api-80.png" alt="">
<div>
Restful APIs
</div>
</div>
<div class="icon">
<img src="/assets/img/icons8/icons8-cloud-80.png" alt="">
<div>
Cloud services
</div>
</div>
<div class="icon">
<img src="/assets/img/icons8/icons8-binary-file-80.png" alt="">
<div>
Native AOT apps
</div>
</div>
<div class="icon">
<img src="/assets/img/icons8/icons8-game-80.png" alt="">
<div>
Game servers
</div>
</div>
<div class="icon">
<img src="/assets/img/icons8/icons8-online-80.png" alt="">
<div>
Websockets
</div>
</div>
<div class="icon">
<img src="/assets/img/icons8/icons8-folder-tree-80.png" alt="">
<div>
File servers
</div>
</div>
<div class="icon">
<img src="/assets/img/icons8/icons8-plus-80.png" alt="">
<div>
And more!
</div>
</div>
</div>
</div>
</section>
<section id="why-sisk">
<div>
<h1>
Simple and robust development.
</h1>
<p>
Sisk enables web development the way you want. Create MVC, MVVM, SOLID applications, or
any other design pattern you're interested in.
</p>
<ul>
<li>
<b>Lightweight:</b> robust projects tested in small, low-cost, low-performance
environments with good, stable results. The entire Sisk ecosystem is less than
500 KB in size!
</li>
<li>
<b>Open-source:</b> the entire Sisk ecosystem is open source, and all the libraries
and technologies we use are also open source. Sisk is entirely distributed
under the MIT License, which allows commercial development.
</li>
<li>
<b>Sustainable:</b> you are the one who makes the project, Sisk gives you the
tools. Because it is open source, the community (including you) can maintain,
fix bugs, and improve Sisk over time.
</li>
</ul>
</div>
<img src="/assets/img/storyset/Starting a business project-bro.svg" alt="">
</section>
<section id="install-banner">
<h2>
Get started with Sisk:
</h2>
<pre class="language-bash">dotnet add package Sisk.HttpServer</pre>
</section>
<section id="dotnet-banner">
<img src="/assets/img/storyset/dotnet-amico.png" alt="">
<div>
<h1>
A single development environment for everything .NET provides.
</h1>
<p>
Get all the firepower of .NET in your project, and export the same code to Windows, Linux or Mac.
</p>
<p>
The world's leading organizations are powered by .NET and trust Microsoft to make .NET the industry's
best choice for their mission-critical software. Sisk is very inspired by .NET development methodologies,
making it feel familiar when working with the framework.
</p>
</div>
</section>
<section id="links-banner">
<a target="_blank" href="https://docs.sisk-framework.org/">
<i class="las la-play"></i>
<div>
Start using Sisk
</div>
<p>
Read our documentation, prepared to get you started with Sisk today.
</p>
</a>
<a href="https://github.com/sisk-http">
<i class="lab la-github"></i>
<div>
Fork Sisk
</div>
<p>
Collaborate, edit, build and access our code repository.
</p>
</a>
<a href="https://www.nuget.org/packages/Sisk.HttpServer/">
<i class="las la-download"></i>
<div>
Install Sisk
</div>
<p>
Visit the NuGet repository
</p>
</a>
</section>
</main>
<div id="footer" class="container">
<div class="legal">
<h1>
Sisk web framework
</h1>
<p>
Sisk was built to change the way of developing HTTP servers and handing development
control to the developer. Sisk is a free, open source project created
and maintained by <a href="https://www.project-principium.dev/">Project Principium</a>.
</p>
<p>
Sisk is distributed under <a href="/license">The MIT License</a>.
</p>
<div>
<small>
Copyright 2022 Project Principium/CypherPotato. Some
icons is provided by <a href="https://icons8.com/icons">Icons8</a> and <a href="https://icons8.com/line-awesome">Line Awesome</a>.
</small>
</div>
</div>
<img src="/assets/img/no-bg-ico.png" alt="">
</div>
</body>
</html>