npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@yamf/services-file-server

v0.1.5

Published

Static file serving service for YAMF microservices

Readme

@yamf/services-file-server

Static file serving service for YAMF microservices with flexible routing and security features.

Version License

Installation

npm install @yamf/services-file-server

Quick Start

import { createStaticFileService } from '@yamf/services-file-server'

const staticServer = await createStaticFileService({
  rootDir: './public',
  urlRoot: '/assets',
  fileMap: {
    '/': 'index.html',
    '/styles/*': 'css',
    '/scripts/*': 'js',
    '/images/*': 'images'
  }
})

// Now visit: http://localhost:9999/assets/styles/main.css

Features

  • Flexible Routing - Map URL patterns to file paths
  • MIME Type Detection - Automatic content-type headers
  • Range Request Support - Enable audio/video seeking
  • Path Traversal Protection - Basic security features
  • Wildcard Patterns - Directory-level routing
  • Auto-refresh - Development mode with live reload

Configuration

Basic Setup

await createStaticFileService({
  rootDir: './public',      // Base directory for files
  urlRoot: '/static',       // URL prefix
  simpleSecurity: true      // Enable path traversal protection
})

File Mapping

await createStaticFileService({
  rootDir: './public',
  fileMap: {
    // Direct mapping
    '/': 'index.html',
    
    // Wildcard directory mapping
    '/css/*': 'styles',
    '/js/*': 'scripts',
    
    // Specific file mapping
    '/favicon.ico': 'assets/favicon.ico',
    
    // Nested paths
    '/assets/images/*': 'public/images'
  }
})

URL Patterns

Direct Files

fileMap: {
  '/': 'index.html',              // http://localhost/
  '/about': 'about.html'          // http://localhost/about
}

Wildcard Directories

fileMap: {
  '/styles/*': 'css',             // http://localhost/styles/main.css
  '/scripts/*': 'js',             // http://localhost/scripts/app.js
  '/downloads/*': 'public/files'  // http://localhost/downloads/doc.pdf
}

Advanced Features

Range Requests (Audio/Video Streaming)

The file server automatically supports HTTP range requests, enabling:

  • Video/audio seeking
  • Bandwidth-efficient streaming
  • Progressive downloads
// Range requests are enabled by default
// Browser automatically sends: Range: bytes=0-1023
// Server responds with: 206 Partial Content

Auto-refresh (Development Mode)

import { createStaticFileService } from '@yamf/services-file-server'

await createStaticFileService({
  rootDir: './public',
  autoRefresh: true,      // Enable live reload
  refreshInterval: 1000   // Check every second
})

Security

Path Traversal Protection

await createStaticFileService({
  simpleSecurity: true  // Blocks paths with '..' or null bytes
})

// Blocked requests:
// - /files/../../../etc/passwd
// - /files/%00.txt
// - /files/..%2F..%2Fetc%2Fpasswd

MIME Types

Automatic content-type detection for common file types:

  • Text: .html, .css, .js, .txt, .json, .xml
  • Images: .jpg, .png, .gif, .svg, .webp, .ico
  • Audio: .mp3, .wav, .ogg, .m4a, .flac
  • Video: .mp4, .webm, .ogv, .mov
  • Documents: .pdf, .zip, .tar, .gz

Use Cases

  • Serve static website assets
  • Host downloadable files
  • Stream audio/video content
  • Provide API documentation
  • Development server with live reload

Performance

  • Streaming - Files are streamed, not loaded into memory
  • Caching - Browser caching headers included
  • Range Requests - Efficient partial content delivery
  • Zero Dependencies - Pure Node.js implementation

License

MIT