Skip to content

Instantly share code, notes, and snippets.

@nebjak
Last active October 13, 2015 01:28
Show Gist options
  • Save nebjak/4118278 to your computer and use it in GitHub Desktop.
Save nebjak/4118278 to your computer and use it in GitHub Desktop.
Whrite Node.js apps in CoffeeScript
http = require 'http'
server = http.createServer (req, res) ->
res.end 'Hello World\n'
server.listen 3000
//Write less and more beautiful code
require('coffee-script');
// Start App
require('./app');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment