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