mirror of
https://github.com/SrIzan10/nodemon.git
synced 2026-05-01 10:55:09 +00:00
5 lines
136 B
Plaintext
5 lines
136 B
Plaintext
http = require 'http'
|
|
server = http.createServer (req, res) -> res.end 'hi\n'
|
|
server.listen process.env.PORT
|
|
console.log "Listening..."
|