You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
317 B

  1. // a simple weberver running on port 5555:
  2. var http = require('http');
  3. var server = http.createServer(
  4. function(req, res) {
  5. res.writeHead(200, {'content-Type': 'text/plain'});
  6. res.end('This is the servers answer\n Bye!\n');
  7. });
  8. server.listen(5555);
  9. console.log('Web server running on beaglebone.local:5555');