Skip to content

Commit

Permalink
Use coffeescript instead
Browse files Browse the repository at this point in the history
  • Loading branch information
christoffer committed Apr 19, 2012
1 parent aaa59b0 commit e8356bc
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 14 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
node_modules
**/*.js
!package.json
!lib/**/*.js
10 changes: 10 additions & 0 deletions app.coffee
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
express = require('express')

app = express.createServer(express.logger())

app.get('/', (request, response) -> response.send('Crawler'))

port = process.env.PORT || 3000

app.listen(port, -> console.log("Listening on #{port}"))

14 changes: 0 additions & 14 deletions app.js

This file was deleted.

0 comments on commit e8356bc

Please sign in to comment.