github.com/jfrog/jfrog-cli-core/v2@v2.52.0/tests/testdata/npm-project/helloworld.js (about)

     1  var http = require('http');
     2  
     3  http.createServer(function(req, res) {
     4    res.writeHead(200, {'Content-Type' : 'text/plain'});
     5    res.end('Hello World\n');
     6  }).listen(1337, '127.0.0.1');