1 2 3 4 5 6 |
var http = require'http'; httpcreateServer reswriteHead200'Content-Type': 'text/plain'; resend'Hello World\n'; listen8124"127.0.0.1"; console.log'Server running at http://127.0.0.1:8124/'; |
1 2 3 4 5 6 |
var http = require'http'; httpcreateServer reswriteHead200'Content-Type': 'text/plain'; resend'Hello World\n'; listen8124"127.0.0.1"; console.log'Server running at http://127.0.0.1:8124/'; |