Express is a minimalistic web application framework for node.js that features regex-based routing, sessions, and support for multiple view engines.
0
votes
3answers
20 views
Express and mongodb article
im a beginner to Node.js and lately ive tried to analyse the code from:http://howtonode.org/express-mongodb. But im stucked. I really don't understand how is this code works:
...
0
votes
0answers
12 views
Cross session issue with Express 3
I have a very weird session issue - some odd cross session problem that has me baffled.
Basically I have an express 3 app in which I have 2, seemingly unrelated things - one is a standard contact ...
1
vote
1answer
19 views
Reference documents with ObjectId when saving in mongoose
I have the following schemas:
// ingredient
var ingredSchema = new Schema({
name: String,
cost: Number
});
// order
var orderSchema = new Schema({
cusName: String,
ingredients: [{type: ...
0
votes
1answer
17 views
Graceful closing of node expressjs not working
I have a simple problem. I'm trying to shutdown an expressjs nodejs server so that current requests finish their responses and new requests get rejected altogether. I've wittled down my code to just ...
0
votes
1answer
15 views
testing remote IP address behaviors on a Node Express server
I'm writing unit tests for a Node.js Express server. The server does some stuff that depends on the remote client's IP address, retrieved using req.ip on the server.
How can I write unit tests that ...
2
votes
1answer
36 views
In Node.js/Express, how do I disable browser cache for a redirect?
app.get('/my_profile_picture', function(req,res){
getPicture(req.user.id, function(url){
res.redirect(url);
});
});
This is my code. However, when the user changes his profile ...
1
vote
1answer
22 views
Detect IE in expressjs, but can't get static files
I've tried to detect IE by using expressjs, the code surely redirect me to the error page.
But the problem is that it won't render css files and get image files in my folder.
I think the problem is ...
0
votes
0answers
14 views
Android - Express.js cookie is not properly sent after being restored
I am working on an android app using the express.js framework on the server side. I have a problem getting persistent login to work.
This is the start of the MainActivity's onCreate:
protected void ...
1
vote
0answers
26 views
DELETE request pending for a long time then fails
I am playing with nodejs/expressjs/angularjs with MondgoDB on Ubuntu 12.04. I was going through this example. When I tested this locally, deleting a wine worked just fine. But after deploying to ...
1
vote
1answer
21 views
Error while rendering a html in ExpressJs
I'm trying out a simple one page render and I'm obviously doing it wrong:
var express = require('express');
var app = express();
app.get('/', function(req, res){
res.render('home.html');
});
...
1
vote
0answers
17 views
node.js socket.io express live page view counter for each page currently accessed on 1 instance
I'm using working code snippets from Christophe Coenraets and want to elaborate it into creating an array of msg.pageUrl to live view count each accessed page in one node instance
Instead of ...
0
votes
1answer
11 views
express res.send http code and text catch up by backbone.js
i try to programming a register with express and backbone.js. the express part looks like that
app.post('/signup', function (req, res) {
var name = req.param("name", null);
var country ...
0
votes
1answer
22 views
Why mongoose.model.create's Callback Isn't Executed from within Express 3.x HTTP Request Handler (connect-mongodb is the cause, actually)
To put the problem stright in code:
expressApp.get('/', function requestHandler(req, res) {
userMongooseModel.create(userPropertiesDict, NEVER_CALLED_CALLBACK);
console.log('This is printed just ...
1
vote
0answers
15 views
express app listen if mongodb is up and re-establish connection
i have this code that opens up a connection to mongodb:
db_connect_mongo = init: (callback) ->
self = this
mongo_options = db:
safe: true
mongoose.connect DB_URL, mongo_options
db = ...
0
votes
1answer
10 views
express route return necessary or not
i use express framework for my webapp. I pickup some codes from book, looked at this code, this a route to a page.
app.post('/register', function(req, res) {
var firstName = req.param('firstName', ...
0
votes
0answers
22 views
How to get node asset_builder working with current express?
I've been trying to use the asset_builder node module with express 3.1, but can't seem to make it very far in the setup before receiving an error like this upon starting the server:
var parsed_url = ...
0
votes
1answer
57 views
How do I setup MongoDB database on Heroku with MongoLab?
I'm using Express.js and MongoLab and I followed the Heroku setup to get MongoDB working in production throwing this code in my app.js.
//Mongo on Heroku Setup
var mongo = require('mongodb');
var ...
0
votes
0answers
20 views
CompoundJS and JugglingDB error with the database
I tried to create my first app using CompoundJS and MySQL. So I created a database named "Lys-Armony_dev" in my local database server and I executed the following commands:
compound init Lys-Armony ...
0
votes
1answer
26 views
How do I make a simple form GET and POST using Express and Mongo?
I'm trying to follow this Express.js and MongoDB tutorial with the difference of making my index page have a form where you save an email address.
This is the main code so far:
emailprovider.js
var ...
-1
votes
2answers
33 views
Node module.exports doen't work?
I'm making node program. I want to access app.js parameter from child. I used module.exports in parent and module.parent.exports in child. But it didn't work. How can I fix it?
(/app.js)
var app = ...
0
votes
2answers
24 views
Jade variable attribute names
I have a variable called current which is used to set the checked value of an html input
so current can be either '' (blank) or checked=true
Since you cant set HTML attributes to false, I can't do ...
0
votes
1answer
10 views
Access mongoose non-schema values in Jade
I have a really weird problem in Jade where I cannot access the values that aren't defined in the Schema.
I'm using strict:false on my schema and saving values to it. My data looks like this:
{
...
0
votes
2answers
22 views
Run exports.someFunction assignment from a callback
I have set a route in Express looking like this:
app.get('/api/:type/:id', api.getItemById);
The function api.getItemById is inside api module in routes. But inside api module I have to run a ...
0
votes
1answer
16 views
ExpressJS 3.2 renders blank pages sometimes
I just upgraded to Express 3.2.4. It works fine, but sometimes (actually, quite frequently) renders a blank page. There is no error, response status is 200, but there is no response body.
It does ...
0
votes
1answer
31 views
understanding module.exports in node.js
looking at code from https://github.com/twilson63/express-coffee/blob/master/src/config/index.coffee#L13 has the following:
#### Config file
# Sets application config parameters depending on `env` ...
0
votes
3answers
29 views
What is the correct way to include backbone & jquery into a project after installing via npm?
I am using Express with Jade and I installed backbone.js and jQuery via npm. Do I copy the appropriate js files into my public/javascript folder or will Jade understand if I use require() inside the ...
0
votes
1answer
71 views
Is node.js + express (back-end) + emberjs (client) a reasonable stack for my project?
To preface; I'm an experienced web developer, though I have barely used nodejs, and have not yet had the opportunity to work with emberjs (though I've done a decent amount of work with backbone).
...
0
votes
1answer
12 views
express session key property
i try to build an app with authentication system in express. for keeping user on session, i use express session middleware. when i configure session, i wonna know, if the session key property have to ...
2
votes
2answers
36 views
How do I redirect all unmatched urls with Express?
I want to redirect all unmatched urls to my homepage. Ie. someone goes to www.mysite.com/blah/blah/blah/foo/bar or www.mysite.com/invalid_url - I want to redirect them to www.mysite.com
Obviously I ...
0
votes
2answers
33 views
How to convert a function to an async.each function
I've a small problem with a function in a class of my nodejs/express server.
I have the following function :
@resolveServers = (url, servers, resolved) ->
result = []
treatServer(url, server, ...
0
votes
0answers
26 views
Express & Jade - max Block Nesting
i use Express 3x + Jade + bootstrap +..etc
my block/extend structure looks like this
.layout.jade (only head stuff)
.topNav.jade (only top nav)
.sideNav.jade (sideNav and control center interface) ...
1
vote
2answers
32 views
MongoDB query from node.js (express-coffeescript-mongodb)
I'm new to database queries with noSQL databases and have a quick question.
Essentially I want to retrieve the 'name' of all fields that have 'publishedImage' set to 'true'. I would like to store ...
0
votes
1answer
35 views
node.js server not receive all binary data (or client not sending all binary data)
I'm very new to node.js and am running into a problem that is probably very basic, I'm sure I'm just not "getting" something, but here we go:
I've got two programs...
server.js is a simple ...
0
votes
0answers
18 views
Node.js - Express.io: Different session saving in different browsers
How and if sessions are correct saved differs in node.js' express.io (all in the latest version) from different browsers.
How could I fix this misbehavior?
Code:
app.get('/home', function(req, res) ...
0
votes
1answer
24 views
Handle an express redirect from Angular POST
I'm using Expressjs as an API and I'm using angular to hit that POST. I would like to respond to the redirect that express is sending. Success from my Angular POST returns a HTML of the page I intend ...
0
votes
1answer
27 views
Express cookieParser() confused
Here's the problem, searched everywhere and never found a clear answer. In order for this:
app.use(express.cookieParser('Secret')); <-- "Secret" to actually be secret
What do we actually do? I'm ...
0
votes
1answer
46 views
Meteor.js apps and API's
I'm trying to work out if Meteor.js is a good fit for an app I would like to build.
The app will be completely web based but will require me to implement a RESTful API that exposes some of its ...
0
votes
2answers
42 views
Loading .js files on client side with page served by Node JS
I have the following simple JS file, which will look familiar to anyone who's used Socket.IO with NodeJS and the Express framework:
var express = require('express'),
app = express(),
server = ...
1
vote
1answer
31 views
Nodejs Express Return Error Code with Res.Render
I am using nodejs with express. I would like to return a custom 404 not found error page. I have it working. however I have not found a solution of how to return a error code with res.render(). I saw ...
0
votes
1answer
17 views
TypeError: object is not a function - node.js / express
I get the following Type Error when I run the node.js application
/Users/khinester/Sandboxes/zeitgeist/Blade/server.js:5
application = require("./.app/")();
^
...
0
votes
1answer
59 views
Make rest call from express
Currently struggling with a issue with express, node.js (and mongoose). I have set up a lot of REST functions that I can redirect to that is working.
From my app.js:
app.get('/users', user.list);
...
0
votes
1answer
37 views
How to delay execution of NodeJS/Express until configuration is loaded
I am working on an expressjs application that loads configuration data from a remote data store. I have all the configuration code in a module.
Modules that I require after I require the ...
0
votes
2answers
24 views
Allowing multiple routes for a single Backbone Model
I am fairly new to Backbone and am creating some basic API for a site. However, I came across a problem that I have yet to find a solution to.
On my front end I have a Backbone Model called Item that ...
-2
votes
0answers
19 views
How do I find my API Username, API Password and Signature for Paypal Express? [closed]
I have reviewed the Paypal site and there were lots of blocks of code. All I need are those specific values (my plugin does the rest).
If the API code is the same for Paypal and paypal Express ...
0
votes
1answer
23 views
Preprocessing via express middleware or through build system
Is preprocessing static resources through middleware (using express) a good idea for production environments? From my understanding the middleware stack is run, in series, for every request. Wouldn't ...
0
votes
1answer
14 views
Best place to define a connection uri using Express
I have just started learning ExpressJs and I am trying to use it with mongoskin.
What I want to know is where is the best place to define the uri to connect to the database. I don't want to do that ...
0
votes
1answer
25 views
Date picker in Jade
I am stuck trying to get a datepicker to work using Jade. Framework is node.js and express.
I load the javascripts in index.jade like this:
link(type='text/css', ...
0
votes
1answer
27 views
Are the req and res objects somehow accessible globally in NodeExpress?
req.session.username = user.username;
I'm using supertest to test route handling. In my log in handling code I have the following if a user logs in successfully -
req.session.username = ...
0
votes
1answer
19 views
Express.js - logging only failed requests
Is there a way to get the express.js logger to log only failed requests?
E.g. 4xx and 5xx, but not logging 3xx results?
0
votes
1answer
12 views
Serving out saved Buffer from Mongo
I'm trying to serve out images that I have stored in a Mongo document. I'm using express, express-resource and mongoose.
The data, which is a JPG, is stored in a Buffer field in my schema. Seems like ...
