Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.