Skip to content

Instantly share code, notes, and snippets.

@AvianFlu
Created June 14, 2011 23:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AvianFlu/9ef85e97ab2aca19373a to your computer and use it in GitHub Desktop.
Save AvianFlu/9ef85e97ab2aca19373a to your computer and use it in GitHub Desktop.
Output from 'jitsu deploy', as pasted from terminal.
~/httptest$ jitsu deploy
info: Welcome to Nodejitsu
info: It worked if it ends with Nodejitsu ok
info: Executing command deploy
info: Authenticated as AvianFlu
warn: There in no valid package.json file in /home/avian/httptest
warn: Creating package.json at /home/avian/httptest/package.json
help:
help: A package.json stores meta-data about your application
help: In order to continue we'll need to gather some information about your app
help:
help: Press ^C at any time to quit.
help: to select a default value, press ENTER
prompt: App name (httptest):
help:
help: The subdomain is where your application will reside.
help: Your application will then become accessible at: http://yourdomain.nodejitsu.com
help:
prompt: subdomain (httptest): noobapp
prompt: scripts.start (server.js):
prompt: version (0.0.0):
info: Analyzing your application dependencies in server.js
/home/avian/local/lib/node_modules/jitsu/node_modules/require-analyzer/lib/require-analyzer.js:551
Object.keys(dependencies).forEach(function (pkg) {
^
TypeError: Object.keys called on non-object
at Function.keys (native)
at Object.extractVersions (/home/avian/local/lib/node_modules/jitsu/node_modules/require-analyzer/lib/require-analyzer.js:551:10)
at /home/avian/local/lib/node_modules/jitsu/lib/jitsu/package.js:277:38
at /home/avian/local/lib/node_modules/jitsu/node_modules/require-analyzer/lib/require-analyzer.js:81:16
at ChildProcess.<anonymous> (/home/avian/local/lib/node_modules/jitsu/node_modules/require-analyzer/lib/require-analyzer.js:477:9)
at ChildProcess.emit (events.js:67:17)
at ChildProcess.onexit (child_process.js:192:12)
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('OMG this is so cool!\n');
}).listen(80);
console.log('Server running!');
Ubuntu v8.10
Node v0.4.7
npm v1.0.11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment