Last active
December 19, 2015 09:39
-
-
Save fibo/5934269 to your computer and use it in GitHub Desktop.
Have an express coffee
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# [Gist](https://gist.github.com/fibo/5934269) | |
# | |
# Deps: | |
# npm install express --save-dev | |
# npm install nodemon -g | |
# npm install coffee-script -g | |
# | |
# Run it with `nodemon express.coffee` | |
express = require 'express' | |
app = express() | |
app.use express.static __dirname | |
app.get '/', (req, res) -> | |
res.sendfile 'index.html' | |
app.listen 3000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment