UNPKG
kaushalfirstpp
Version:
latest (1.0.0)
1.0.0
First package
kaushalfirstpp
/
firstApp.js
8 lines
(6 loc)
•
244 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
var
http =
require
(
"http"
); http.
createServer
(
function
(
request, response
) { response.
writeHead
(
200
, {
'Content-Type'
:
'text/plain'
}); response.
end
(
"Hello World"
) }).
listen
(
8081
);
console
.
log
(
'Server running at http://127.0.0.1:8081/'
);