UNPKG
create-serve
Version:
latest (1.0.1)
1.0.1
1.0.0
0.1.0
0.0.0
🍛 Ultralight http server with live reload. [CLI + API]
github.com/nativew/serve
nativew/serve
create-serve
/
src
/
utils
/
showFile.js
7 lines
(5 loc)
•
199 B
JavaScript
View Raw
1
2
3
4
5
6
7
import
{ encoding }
from
'../index.js'
;
export
const
showFile
= (
response, content, contentType
) => { response.
writeHead
(
200
, {
'Content-Type'
: contentType }); response.
end
(content, encoding); };