This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var http = require('http') | |
, sys = require('sys') | |
, url = require('url') | |
, path = require('path') | |
, fs = require('fs') | |
, net = require('net'); | |
var crlf = "\r\n"; | |
var crlf_len = crlf.length; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
npm ERR! Error sending version data | |
npm ERR! Error: forbidden _npmUser field must be object | |
npm ERR! (You probably need to upgrade your npm version): sprintf/0.1.2/-tag/latest | |
npm ERR! at Request._callback (/usr/local/lib/node_modules/npm/lib/utils/npm-registry-client/request.js:180:12) | |
npm ERR! at Request.callback (/usr/local/lib/node_modules/npm/node_modules/request/main.js:99:22) | |
npm ERR! at Request.<anonymous> (/usr/local/lib/node_modules/npm/node_modules/request/main.js:361:18) | |
npm ERR! at Request.emit (events.js:64:17) | |
npm ERR! at IncomingMessage.<anonymous> (/usr/local/lib/node_modules/npm/node_modules/request/main.js:327:16) | |
npm ERR! at IncomingMessage.emit (events.js:81:20) | |
npm ERR! at HTTPParser.onMessageComplete (http.js:133:23) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Module dependencies. | |
*/ | |
var express = require('express') | |
, routes = require('./routes') | |
, formidable = require("formidable"); | |
var config = require("./config"); |