Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
agnoster committed May 31, 2011
0 parents commit 4f6b736
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
@@ -0,0 +1,2 @@
**.log
node_modules
3 changes: 3 additions & 0 deletions bin/nosey
@@ -0,0 +1,3 @@
#!/usr/bin/env node

require('../lib/nosey')
8 changes: 8 additions & 0 deletions lib/nosey.js
@@ -0,0 +1,8 @@
var express = require('express')
, app = express.createServer()

app.get('/', function(req, res) {
res.send("Hello World")
})

app.listen(3000)
19 changes: 19 additions & 0 deletions package.json
@@ -0,0 +1,19 @@
{ "author": "Isaac Wolkerstorfer <agnoster@gmail.com> (http://agnoster.net/)"
, "name": "nosey"
, "description": "Nosey - Continuous Integration server in Node"
, "version": "0.0.0"
, "homepage": "https://github.com/agnoster/nosey"
, "repository":
{ "url": ""
}
, "engines":
{ "node": "~0.4.7"
}
, "dependencies":
{ "express": "~2.3.10"
, "socket.io": "~0.6.18"
}
, "devDependencies":
{ "coffee-script": "~1.0.0"
}
}

0 comments on commit 4f6b736

Please sign in to comment.