You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-[Sisk.HttpServer](src): the Sisk Framework mainframe and core functions.
49
49
-[Sisk.SslProxy](extensions/Sisk.SslProxy): an experimental SSL proxy provider for Sisk.
50
50
-[Sisk.IniConfiguration](extensions/Sisk.IniConfiguration): an INI-document configuration provider for Sisk.
51
51
-[Sisk.BasicAuth](extensions/Sisk.BasicAuth): the basic authentication package which provides helper request handlers for handling authentication.
52
+
-[Sisk.JsonRpc](extensions/Sisk.JsonRPC): this package provides an JSON-RPC 2.0 interface for Sisk projects.
53
+
-[Sisk.Cadente](extensions/Sisk.Cadente): an experimental "ultrafast" implementation of the HTTP/1.1 protocol in pure C#.
52
54
53
55
## Getting started
54
56
55
57
The Sisk core idea is to create a service that runs on the internet and follows the pattern you define. Moreover, Sisk is a framework that adapts to how you want it to work, not the other way around.
56
58
57
-
Due to its explicit nature, its behavior is predictable. The main differentiator from ASP.NET is that Sisk can be up and running in very few lines of code, avoiding unnecessary configurations, and requiring the minimum setup to get your server working. Additionally, it does not demand any additional .NET SDK packages to develop, as the base package of .NET 6 is sufficient to start your development with Sisk.
59
+
Due to its explicit nature, its behavior is fully predictable. The main differentiator from ASP.NET is that Sisk can be built and run in very few lines of code, avoiding unnecessary configurations, and requiring the minimum setup to get your server working. Additionally, it does not demand any additional .NET SDK packages to work with, as the base package of .NET is sufficient to start your development with Sisk.
58
60
59
-
It can handle multiple requests asynchronously, provides useful tools to manage and accelerate web development.
61
+
You can build applications that are not necessarily a complete web application, but that have an web module, such as receiving an OAuth authorization token, hosting a UI to control your application, monitoring logs, etc. Sisk is very flexible and abstract.
60
62
61
63
```c#
62
64
usingSisk.Core.Http;
@@ -77,16 +79,16 @@ class Program
77
79
}
78
80
```
79
81
80
-
You can learn more about Sisk on its[website](https://www.sisk-framework.org/).
82
+
You can learn more about Sisk on it's[website](https://www.sisk-framework.org/).
81
83
82
84
## Main features
83
85
84
86
Sisk can do web development the way you want. Create MVC, MVVC, SOLID applications, or any other design pattern you're interested in.
85
87
86
88
-**Flexible**: you're not limited to build an full-featured web application, but it can be an module to your existing project.
87
-
-**Lightweight:** robust projects tested in small, low-cost, low-performance environments and got good results.
89
+
-**Lightweight:** robust projects can be runned in small, low-costenvironments and provide a nice performance. The Sisk core server also uses zero dependencies on it's core library.
88
90
-**Open-source:** the entire Sisk ecosystem is open source, and all the libraries and technologies we use must be open source as well. Sisk is entirely distributed under the MIT License, which allows the commercial development.
89
-
-**Sustainable:**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.
91
+
-**Sustainable:** the project adapts to the pattern you want. Write MVC, MVVM, Clean-Architecture, OOP, Functional applications... you are in control.
0 commit comments