index.js 170 B

123456
  1. var http = require('http');
  2. http.createServer(function (req, res) {
  3. res.writeHead(200, {'Content-Type': 'text/plain'});
  4. res.write('ok');
  5. res.end();
  6. }).listen(3000);