Skip to content

jersuen/uwebsocket-serve

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Static file serving for uWebSockets.js http server.

Example

import path from 'path';
import { App } from 'uWebSockets.js';
import { serveDir } from 'uwebsocket-serve';

const publicPath = path.resolve(__dirname, '../public');
const serveStatic = serveDir(publicPath);

App().get('/*', serveStatic);

API

const serveDir = (directoryPath: string) => (res: HttpResponse, req: HttpRequest) => void

serveDir(directoryPath: string)

Create a new middleware function to serve files from within a given root directory. The file to serve will be determined by combining req.getUrl() with provided directory. When a file is not found sending a 404 response.

Cache

This module supports the Last-Modified HTTP header

Source

This library is based on an example from a uWebSockets.js repository.

Support

uwebsocket-serve is an MIT-licensed open source project. Feel free to fork and contribute.

About

Static file serving for uWebSockets.js

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 87.0%
  • JavaScript 9.0%
  • HTML 4.0%