mirror of
https://github.com/ZeroTier/ZeroTierOne
synced 2025-07-16 10:03:14 -07:00
Test update
This commit is contained in:
parent
3d163f7044
commit
275a76ff5c
22 changed files with 469 additions and 7 deletions
|
@ -0,0 +1,7 @@
|
|||
var http = require('http');
|
||||
var server = http.createServer(function (request, response) {
|
||||
response.writeHead(200, {"Content-Type": "text/plain"});
|
||||
response.end("Welcome to the machine!\n");
|
||||
});
|
||||
server.listen(8080);
|
||||
console.log("Server running!");
|
Loading…
Add table
Add a link
Reference in a new issue