mirror of
https://github.com/SrIzan10/nodemon.git
synced 2026-05-01 10:55:09 +00:00
3 lines
234 B
JavaScript
3 lines
234 B
JavaScript
// process.title = 'node (fixtures/app)';
|
|
// 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); |