UNPKG
httpserver.maskwang
Version:
latest (0.0.1)
0.0.1
0.0.0
http server
github.com/maskwang/httpserver
maskwang/httpserver
httpserver.maskwang
/
example
/
sayhello.js
7 lines
•
182 B
JavaScript
View Raw
1
2
3
4
5
6
7
exports.onRequests =
function
(ctx)
{ ctx.response.writeHead(
200
, {
'Content-Type'
:
'text/html'
}); ctx.response.
write
(
'Hello World'
); ctx.response.
end
(); };