
Security News
Node.js Homepage Adds Paid Support Link, Prompting Contributor Pushback
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.
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
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.
Research
North Korean threat actors linked to the Contagious Interview campaign return with 35 new malicious npm packages using a stealthy multi-stage malware loader.
Research
Security News
The Socket Research Team investigates a malicious Python typosquat of a popular password library that forces Windows shutdowns when input is incorrect.