index.js 259 B

12345678
  1. var http = require('http');
  2. http.createServer(function (req, res) {
  3. res.writeHead(200, { 'Content-Type': 'text/plain' });
  4. res.end('hello node.js');
  5. }).listen(3000, 'localhost', function () {
  6. console.log('Server running at http://localhost:3000');
  7. });