UNPKG
yunlongzha_try_nodejs
Version:
latest (1.0.0)
1.0.0
try it
yunlongzha_try_nodejs
/
node_try
/
1.js
6 lines
•
210 B
JavaScript
View Raw
1
2
3
4
5
6
var
http=
require
(
'http'
); http.
createServer
(
function
(
req,res
){ res.
writeHead
(
200
,{
"Content-Type"
:
"text/plain"
}); res.
end
(
'Hello,world'
) }).
listen
(
1000
);
console
.
log
(
'Server run at http://127.0.0.1.1000'
)