![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
github.com/pablolagos/fns
This software is currently in development and is not yet production-ready.
Please be aware that features may change, and the application may contain bugs or incomplete functionality. Use at your own risk, and feel free to contribute or provide feedback!
Welcome to FNS, a high-performance HTTP server designed to meet the demands of modern web applications. Built on the robust foundations of fasthttp, FNS offers enhanced compatibility with HTTP/2.0 and provides unbuffered responses for superior performance.
Get started with FNS in just a few steps.
Ensure you have Go installed on your machine. Download Go
go get -u github.com/pablolagos/fns
Setting up a basic FNS server is straightforward. Here's a quick example:
package main
import (
"github.com/pablolagos/fns"
"log"
)
func main() {
fns.Get("/hello", func(ctx *fns.RequestCtx) {
ctx.WriteString("Hello, World!")
})
log.Println("Starting server on :8080")
if err := fns.ListenAndServe(":8080", nil); err != nil {
log.Fatalf("Error starting server: %s", err)
}
}
Detailed documentation is available on our wiki. Here are some quick links to get you started:
We welcome contributions from the community! Please read our Contributing Guidelines to get started.
FNS is licensed under the MIT License. See the LICENSE file for more details.
FNS is based on the incredible work done by FastHTTP created by Aliaksandr Valialkin, VertaMedia, Kirill Danshin, Erik Dubbelboer and all FastHTTP Authors.
Made with ❤️ for a faster web.
FAQs
Unknown package
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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.