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
/
showError.js
5 lines
(4 loc)
•
117 B
JavaScript
View Raw
1
2
3
4
5
export
const
showError
= (
response, error
) => { response.
writeHead
(
500
); response.
end
(
`Error
${error.code}
\n`
); };