rsnext/packages/next/next-server/server/serve-static.ts

22 lines
549 B
TypeScript
Raw Normal View History

import { IncomingMessage, ServerResponse } from 'http'
2020-03-29 03:40:29 +02:00
import send from 'next/dist/compiled/send'
export function serveStatic(
req: IncomingMessage,
res: ServerResponse,
path: string
): Promise<void> {
return new Promise((resolve, reject) => {
send(req, path)
.on('directory', () => {
// We don't allow directories to be read.
const err: any = new Error('No directory access')
err.code = 'ENOENT'
reject(err)
})
.on('error', reject)
.pipe(res)
.on('finish', resolve)
})
}