New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

srf

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

srf

A file server

latest
Source
npmnpm
Version
1.0.7
Version published
Maintainers
1
Created
Source

srf

test version

Serve Really Fast

A tiny, dependency-free static file server for Node.js. It serves a folder over HTTP, with directory listings, SPA fallback, and basic caching (ETag/Last-Modified) for quickly previewing local sites or builds.

Serving public/

    - Local:    http://0.0.0.0:8080
    - Network:  http://192.168.1.42:8080

[2025-12-03T20:00:42.007Z] GET /index.html -> 200

Installation

npm i -g srf
npx srf

Usage

Usage: srf [options] [root]

Options:
  -p, --port <number>     Port to listen on (default: 8080)
      --host <host>       Host to bind (default: 0.0.0.0)
      --no-listing        Disable directory listing
      --spa               Single Page App mode (serve index.html for 404s)
      --cache <seconds>   Cache-Control max-age in seconds (default: 0)
  -h, --help              Show this help
  -v, --version           Show version

Examples:
  srf                     Serve current directory
  srf -p 3000 public      Serve ./public on port 3000

Benchmark

ServerRequests/sec
srf22104
http-server11504
serve11479

Measured with wrk on a MacBook Air M2. In this run, srf is ~2× faster than http-server and serve by requests/sec.

License

MIT

Keywords

server

FAQs

Package last updated on 06 Dec 2025

Did you know?

Socket

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.

Install

Related posts