mirror of
https://github.com/SrIzan10/nodemon.git
synced 2026-05-01 10:55:09 +00:00
2 lines
189 B
JavaScript
2 lines
189 B
JavaScript
console.log('starting up @ ' + (process.env.PORT || 8000));
|
|
require('http').createServer(function (req, res) { console.log('Request in'); res.end('ok'); }).listen(process.env.PORT || 8000); |