All Downloads are FREE. Search and download functionalities are using the official Maven repository.

archetype-resources.hello-rest.js Maven / Gradle / Ivy

There is a newer version: 2.2.197
Show newest version
var http = require('http');
http.createServer(function (req, res) {
  res.writeHead(200, {'Content-Type': 'text/plain'});
  res.end('Hello from the fabric8 NodeJS example');
}).listen(8080);
console.log('Server running at http://localhost:8080/');




© 2015 - 2025 Weber Informatics LLC | Privacy Policy