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

koa-files

v5.0.1

Published

A static files serving middleware for koa.

Readme

koa-files

A static files serving middleware for koa.

NPM Version Download Status Languages Status Node Version License

Install

$ npm install koa-files

Quick start

import Koa from 'koa';
import { server } from 'koa-files';

const app = new Koa();

app.use(
  server('public', {
    headers: {
      'Cache-Control': 'public, max-age=31536000, immutable'
    }
  })
);

app.listen(3000);

Then visit http://127.0.0.1:3000/app.js to serve public/app.js.

API

import { Middleware } from 'koa';
import { PathLike, Stats } from 'node:fs';

interface Headers {
  [key: string]: string | string[];
}

interface IgnoreFunction {
  (path: string): Promise<boolean> | boolean;
}

interface HighWaterMarkFunction {
  (path: string, stats: Stats): Promise<number> | number;
}

interface HeadersFunction {
  (path: string, stats: Stats): Promise<Headers | void> | Headers | void;
}

export interface FileSystem {
  close(fd: number, callback?: (error?: Error | null) => void): void;
  read<T extends ArrayBufferView>(
    fd: number,
    buffer: T,
    offset: number,
    length: number,
    position: number | bigint | null,
    callback: (error: Error | null | undefined, bytesRead: number, buffer: T) => void
  ): void;
  stat(path: PathLike, callback: (error: Error | null | undefined, stats: Stats) => void): void;
  open(
    path: PathLike,
    flags: string | number | undefined,
    callback: (error: Error | null | undefined, fd: number) => void
  ): void;
}

export interface Options {
  etag?: boolean;
  defer?: boolean;
  fs?: FileSystem;
  acceptRanges?: boolean;
  lastModified?: boolean;
  ignore?: IgnoreFunction;
  headers?: Headers | HeadersFunction;
  highWaterMark?: number | HighWaterMarkFunction;
}

export function server(root: string, options?: Options): Middleware;

root

  • Root directory string.
  • Nothing above this root directory can be served.
  • root is resolved with path.resolve, so relative paths are based on the process working directory.

Options

fs
  • Defaults to node:fs.
  • The file system to use.
defer
  • Defaults to false.
  • If true, serves after await next().
  • Allowing any downstream middleware to respond first.
  • Useful when you want route handlers to take priority over static files.
etag
  • Defaults to true.
  • Enable or disable etag generation.
  • Use weak etag internally.
  • Can be overridden by the headers.
acceptRanges
  • Defaults to true.
  • Enable or disable accepting ranged requests.
  • Disabling this will not send Accept-Ranges and ignore the contents of the Range request header.
  • Can be overridden by the headers.
lastModified
  • Defaults to true.
  • Enable or disable Last-Modified header.
  • Use the file system's last modified value.
  • Can be overridden by the headers.
highWaterMark
  • Defaults to 65536 (64 KiB).
  • Set the high water mark for the read stream.
  • Supports function form to customize by file path and stats.
ignore
  • Defaults to undefined.
  • Function that determines if a file should be ignored.
  • Return true to skip static serving for the current file.
headers
  • Defaults to undefined.
  • Set headers to be sent.
  • See docs: Headers in MDN.
  • Supports function form to compute headers dynamically.

Behavior notes

  • Only GET and HEAD requests are handled.
  • Range requests are supported (including multipart range responses).
  • Conditional requests are supported via ETag and Last-Modified.
  • Requests containing invalid paths (e.g. null bytes) respond with 400.
  • Files outside root are never served.

Example

/**
 * @module server
 * @license MIT
 * @author nuintun
 */

import Koa from 'koa';
import { server } from 'koa-files';

const app = new Koa();
const port = process.env.PORT || 80;

// Static files server
app.use(
  server('tests', {
    headers: {
      'Cache-Control': 'public, max-age=31557600'
    }
  })
);

/**
 * @function httpError
 * @param {NodeJS.ErrnoException} error
 * @returns {boolean}
 */
function httpError(error) {
  return /^(EOF|EPIPE|ECANCELED|ECONNRESET|ECONNABORTED)$/i.test(error.code);
}

// Listen error event
app.on('error', error => {
  !httpError(error) && console.error(error);
});

// Start server
app.listen(port, () => {
  console.log(`> server running at: 127.0.0.1:${port}`);
});

More examples

Prefer application routes first (defer: true)

app.use(async (ctx, next) => {
  if (ctx.path === '/healthz') {
    ctx.body = 'ok';
    return;
  }

  await next();
});

app.use(server('public', { defer: true }));

Dynamic ignore rule

app.use(
  server('public', {
    ignore: path => path.endsWith('.map')
  })
);

Dynamic stream buffer

app.use(
  server('public', {
    highWaterMark: (path, stats) => (stats.size > 10 * 1024 * 1024 ? 256 * 1024 : 64 * 1024)
  })
);

Features

  • Static file middleware for Koa.
  • Supports multipart range and download resumption.
  • Supports conditional requests (ETag, Last-Modified).

License

MIT