
Security News
Deno 2.4 Brings Back deno bundle, Improves Dependency Management and Observability
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Sisk is a web development framework that is lightweight, agnostic, easy, simple, and robust. The perfect choice for your next project.
You can get started with Sisk here or build the documentation repository here.
For information about release notes, changelogs and API breaking changes, see docs/Changelog.md.
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.
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.
It can handle multiple requests asynchronously, provides useful tools to manage and accelerate web development.
using Sisk.Core.Http;
class Program
{
static async Task Main(string[] args)
{
using var app = HttpServer.CreateBuilder(5555).Build();
app.Router.MapGet("/", request =>
{
return new HttpResponse("Hello, world!");
});
await app.StartAsync(); // 🚀 app is listening on http://localhost:5555/
}
}
Sisk can do web development the way you want. Create MVC, MVVC, SOLID applications, or any other design pattern you're interested in.
Read more about Sisk at it's repository or website.Sisk is a web development framework that is lightweight, agnostic, easy, simple, and robust. The perfect choice for your next project.
You can get started with Sisk here or build the documentation repository here.
For information about release notes, changelogs and API breaking changes, see docs/Changelog.md.
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.
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.
It can handle multiple requests asynchronously, provides useful tools to manage and accelerate web development.
using Sisk.Core.Http;
using Sisk.Core.Routing;
namespace myProgram;
class Program
{
static void Main(string[] args)
{
var app = HttpServer.CreateBuilder();
app.Router += new Route(RouteMethod.Get, "/", request =>
{
return new HttpResponse(200)
.WithContent("Hello, world!");
});
app.Start();
}
}
Sisk can do web development the way you want. Create MVC, MVVC, SOLID applications, or any other design pattern you're interested in.
Read more about Sisk at it's repository or website.
FAQs
Unknown package
We found that sisk.sslproxy demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.