Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Paste
P75650
(An Untitled Masterwork)
Active
Public
Actions
Authored by
TheresNoTime
on Apr 29 2025, 7:55 PM.
Edit Paste
Archive Paste
View Raw File
Subscribe
Mute Notifications
Tags
None
Referenced Files
F59557908: raw-paste-data.txt
Apr 29 2025, 7:55 PM
2025-04-29 19:55:08 (UTC+0)
Subscribers
None
tools.kuma@tools-bastion-13:~$ tree
.
├── logs
├── replica.my.cnf
├── service.manifest
└── www
└── js
├── package.json
└── server.js
4 directories, 4 files
tools.kuma@tools-bastion-13:~$ cat www/js/server.js
var http = require('http');
var port = parseInt(process.env.PORT, 10) ; // IMPORTANT!! You HAVE to use this environment variable as port!
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');
}).listen(port);
tools.kuma@tools-bastion-13:~$ cat www/js/package.json
{
"scripts": {
"start": "node server.js"
}
}
Event Timeline
TheresNoTime
created this paste.
Apr 29 2025, 7:55 PM
2025-04-29 19:55:08 (UTC+0)
Cyberwolf
awarded a token.
Apr 30 2025, 2:22 PM
2025-04-30 14:22:09 (UTC+0)
Log In to Comment