mirror of
https://github.com/SrIzan10/nodemon.git
synced 2026-05-01 10:55:09 +00:00
6 lines
291 B
JavaScript
6 lines
291 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);
|
|
|
|
process.on('SIGINT', function() { process.exit(130) })
|