UNPKG

huangbaokang

Version:

huangbaokang's first package

8 lines (6 loc) 221 B
var http = require('http'); http.createServer(function(request,response){ response.writeHead(200,{'Content-Type':'text/plain'}); response.end("hello huangbaokang"); }).listen(8888); console.log("Server running ....");