Created
September 25, 2012 21:52
-
-
Save lancejpollard/3784701 to your computer and use it in GitHub Desktop.
Node.js `Error: socket hang up`
This file contains hidden or 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') | |
| , user = require('./routes/user') | |
| , http = require('http') | |
| , path = require('path') | |
| , superagent = require('superagent'); | |
| var app = express(); | |
| app.configure(function(){ | |
| app.set('port', process.env.PORT || 3000); | |
| app.set('views', __dirname + '/views'); | |
| app.set('view engine', 'ejs'); | |
| app.use(express.favicon()); | |
| app.use(express.logger('dev')); | |
| app.use(express.bodyParser()); | |
| app.use(express.methodOverride()); | |
| app.use(express.cookieParser('your secret here')); | |
| app.use(express.session()); | |
| app.use(app.router); | |
| app.use(require('stylus').middleware(__dirname + '/public')); | |
| app.use(express.static(path.join(__dirname, 'public'))); | |
| }); | |
| app.configure('development', function(){ | |
| app.use(express.errorHandler()); | |
| }); | |
| app.get('/', routes.index); | |
| app.get('/users', user.list); | |
| http.createServer(app).listen(app.get('port'), function(){ | |
| console.log("Express server listening on port " + app.get('port')); | |
| var request = superagent | |
| .get('http://localhost:3000') | |
| .set({}) // blank headers, is that a problem? | |
| .send(JSON.stringify({conditions: {rating: 8}})) // JSON string on GET | |
| .redirects(5) | |
| .end(function(response) { | |
| console.log(response) | |
| }); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment