Skip to content

Commit

Permalink
foobar
Browse files Browse the repository at this point in the history
  • Loading branch information
dscape committed Jul 31, 2012
1 parent 9051cd0 commit 9e287e2
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
7 changes: 7 additions & 0 deletions index.js
@@ -0,0 +1,7 @@
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');
}).listen(1337, '127.0.0.1');

console.log('Server running at http://127.0.0.1:1337/');
17 changes: 17 additions & 0 deletions package.json
@@ -0,0 +1,17 @@
{
"author": "nuno <nomails@forya.com>",
"name": "hello_world",
"description": "whatevs",
"version": "0.0.0",
"repository": {
"type": "git",
"url": "git://github.com/dscape/hello_world.git"
},
"main": "index.js",
"engines": {
"node": "~0.6.7"
},
"dependencies": {},
"devDependencies": {},
"optionalDependencies": {}
}

0 comments on commit 9e287e2

Please sign in to comment.