Skip to content

Commit

Permalink
Initial commit via nodester-cli
Browse files Browse the repository at this point in the history
  • Loading branch information
Contra committed Oct 25, 2011
1 parent 851f65d commit 551426a
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 252 deletions.
1 change: 1 addition & 0 deletions contratest/.gitignore
@@ -0,0 +1 @@
.nodester.appconfig
5 changes: 5 additions & 0 deletions contratest/server.js
@@ -0,0 +1,5 @@
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\nApp (contratest) is running..');
}).listen(12344);
230 changes: 0 additions & 230 deletions nodester.js

This file was deleted.

40 changes: 18 additions & 22 deletions package.json
@@ -1,23 +1,19 @@
{ {
"name": "nodester-api", "name":"nodester-api",
"description": "A module to allow interaction with the http://nodester.com/ platform.", "description":"A library to interact with Nodester",
"version": "0.1.15", "version":"0.1.16",
"homepage": "http://nodester.com/", "homepage":"http://nodester.com/",
"repository": "git://github.com/nodester/nodester-api.git", "repository":"git://github.com/nodester/nodester-api.git",
"author": "Daniel Bartlett <dan@f-box.org> (http://danb-uk.net/)", "author":"Contra <contra@nodester.com>",
"contributors": [
"Dav Glass <davglass@gmail.com> @davglass", "main":"./lib/nodester.js",
"Chris Matthieu <chris@matthieu.us>", "dependencies":{
"Aaron <aaron@nodester.com>", "request":"*"
"Contra <contra@nodester.com>", },
"Marcos Oliveira <marcosvm@gmail.com>" "devDependencies":{
], "coffee-script":"*"
"engines": { },
"node": "*" "engines":{
}, "node":"*"
"dependencies" : { }
"request": "*", }
"querystring": "*"
},
"main": "./nodester.js"
}

0 comments on commit 551426a

Please sign in to comment.