mirror of
				https://github.com/KevinMidboe/linguist.git
				synced 2025-10-29 17:50:22 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			257 B
		
	
	
	
		
			JavaScript
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			257 B
		
	
	
	
		
			JavaScript
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env node
 | 
						|
var http = require('http');
 | 
						|
http.createServer(function (req, res) {
 | 
						|
  res.writeHead(200, {'Content-Type': 'text/plain'});
 | 
						|
  res.end('Hello World\n');
 | 
						|
}).listen(1337, '127.0.0.1');
 | 
						|
console.log('Server running at http://127.0.0.1:1337/');
 |