create the web service by yourshelf

 

create the web service by yourshelf

create the web service by yourshelf

start cmd

node demo.js

var http = require('http');

http.createServer(function (request, response) {
  response.writeHead(200, {'Content-Type': 'text/plain'});
  response.end('good night\n');
}).listen(8888);

console.log('Server running at http://127.0.0.1:8888/');

 

 

http://nodejs.org/

相关文章:

  • 2021-11-25
  • 2021-12-05
  • 2021-11-26
  • 2021-08-12
  • 2021-11-03
  • 2021-08-12
  • 2022-12-23
猜你喜欢
  • 2021-12-12
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-03-08
  • 2021-08-07
  • 2022-02-18
相关资源
相似解决方案