UNPKG

servatron

Version:

Create a handler that can server static files using the NodeJS http/http2 modules, or use the inbuilt cli server to quickly run a web server.

7 lines (6 loc) 245 B
import http2 from 'http2'; import http from 'http'; declare function generateAntiCorsHeaders(headers: http.IncomingHttpHeaders | http2.IncomingHttpHeaders): { 'Access-Control-Allow-Origin': string; }; export default generateAntiCorsHeaders;