Express is a minimalistic web application framework for node.js that features regex-based routing, sessions, and support for multiple view engines.

learn more… | top users | synonyms (2)

0
votes
0answers
8 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
15 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
10 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
19 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
26 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
16 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
15 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
0answers
42 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
31 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
23 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
17 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
17 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
13 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 ...
1
vote
0answers
29 views

Mongo DB message length is too large

I am experimenting creating an app with node express, backbone and mongodb. I am experiencing a problem where when I try to save a new model, the data base kicks me back the following error - ...
0
votes
1answer
22 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
0answers
26 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
0answers
10 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 ...
0
votes
3answers
26 views

Require cannot find custom module after moving to server

I am trying to deploy a node app that runs fine on my local Mac Lion, however. On the virtual Ubuntu box, it is giving an error: module.js:340 throw err; ^ Error: Cannot find module ...
1
vote
1answer
16 views

Uploading binary file on Node.js

I am using Flash to record and upload audio to a node server. The Flash client is a variation of jrecorder. When the user is done recording the audio is uploaded using a POST request (not a form ...
0
votes
1answer
25 views

widgets template system using node.js with dust server side templates

I'm trying to create a page with widgets on it using Node.js and Dust as a template engine. I would like the widgets to be standalone as possible with their own css, js and html. Which of the follow ...
0
votes
1answer
17 views

Title not defined…node.js, express,jade, twitter bootstrap

Im currently trying to learn node.js and I am working with express and jade. I am trying to get twitter bootstrap working but am running into issues... here is my error: ReferenceError: ...
0
votes
2answers
47 views

What is the best practice for serving html in node.js with express.js?

I currently am serving all my html right in my app.js/server.js file like this: app.get('/', function(req, res) { res.render('index.html'); }); app.get('/about', function(req, res) { ...
0
votes
0answers
21 views

node.js socket.io express - user login system

I've got a problem with writing simple user login/registration system for my app :( I can't find any simple guide for this issue. Let's say I have a simple express application and I can add user to ...
1
vote
1answer
37 views

Node.js Object object has no method 'hasOwnProperty'

Not sure why hasOwnProperty() seems to be missing from my object... I'm getting data from an http post in expressjs3, like this: someControllerFunction: function(req, res){ var data = ...
0
votes
0answers
17 views

Pass query params from node.js server to socket.io

I'm writing a node.js app, that can generate url's like this: http://examle.com/?param1=val&param2=val I wonder if users will follow this urls to my app - is this possible to get params from ...
0
votes
0answers
15 views

OverwriteModelError: Cannot overwrite `category` model once compiled

error C:\nodejs\node.exe app.js Express server listening on port 81 POST /39 200 1225ms - 3b D:\node.js\node_modules\mongodb\lib\mongodb\connection\server.js:565 throw err; ^ ...
0
votes
1answer
10 views

Express Mongoose DB.once ('open') cannot execute a callback function

exports.c_39 = function(req,res) { var mongoose = require('mongoose'); mongoose.createConnection('mongodb://localhost/cj'); var db = mongoose.connection; db.on('error', ...
0
votes
1answer
18 views

How to display multiple mongoose search results in expressjs

I'm working to create an MVC on top of expressjs, in order to learn express. I am having trouble between the model and view. The Git repo exists here. I would like to display a list of blog posts. ...
1
vote
0answers
18 views

URL Rewriting with ExpressJS

I would like to rewrite my URLs on my ExpressJS website. I've used this plugin, https://github.com/joehewitt/express-rewrite, but it doesn't work... However, I might have made a mistake... My app.js ...
0
votes
3answers
28 views

Express: Optional trailing slash for top-level path

Update: My question did not accurately convey what I'm trying to achieve. I wish to match /foo, /foo/, and anything under /foo/ (e.g. /foo/asdf/jkl), not the given paths specifically. The original ...
0
votes
3answers
31 views

SyntaxError: Unexpected token for at Object.Function (<anonymous>) node.js

I'm using Express, EJS and mongoose for a website learning exercise. Here is my index.js module: blog_model = require('./connection').blog_model; /* * GET home page. */ exports.index = ...
0
votes
2answers
59 views

How to send result of a function after the loop is finished?

In a Node/Express server in CoffeeScript, I have the following function : @resolveServers = (url, servers, answer) -> result = [] treatServer(url, server, (treatAnswer) -> ...
1
vote
2answers
43 views

Send socket.io response data to client from node.js server in gzip format

The issue I'm having is that I don't know how to be able to tell whether or not the data that I'm sending back to the client is compressed in gzip format. Looking at the output of my server from the ...
0
votes
1answer
22 views

HTTPS on Nodejitsu using Express

Okay. I have an app on express which also uses Socket.io and works fine via HTTP. However, now I have to move to HTTPS. Nodejitsu provide a lot of documentation on this. They suggest to use ...
0
votes
0answers
19 views

connect-redis and express sessions

Being somewhat new to node/express, I've been working on a project for myself to be sure I have the fundamentals down. At the moment, I'm really focusing on sessions. I have a back-end session store ...
0
votes
0answers
14 views

Middleware issue with file upload in Node.js/Express when uploading files

I'm using https://github.com/aguidrevitch/jquery-file-upload-middleware to upload files. Before I let a user upload files, though I want to perform an authentication check. The uploading works fine ...
0
votes
2answers
17 views

HTTP Auth with dynamic URLs in Express.JS

I've got a route in my Express 3.0 app defined like this: app.post('/:app/find', auth, function(req, res){ I'd like it restricted using HTTP authorization. My auth function just looks like this: ...
0
votes
1answer
41 views

Error with ntwitter module for node.js

I'm trying to build a Twitter streaming app using node.js and the ntwitter module, here's my code : var app = require('express').createServer(), twitter=require('ntwitter'); app.listen(3000); var ...
1
vote
1answer
112 views

Angular.js - Redirection not working

I have somes difficulties to understand the behavior of Angular.js routing Here is my code my app.js: 'use strict'; var app = angular.module('myApp', []). config(['$routeProvider', ...
4
votes
1answer
1k views

Node.js/Express.j or Ruby on Rails for an ABSOLUTE beginner [closed]

I had asked a question previously regarding the use of Javascript or Ruby on Rails for the development of web apps and got some very good advice from maerics which basically boiled down to Javascript ...
2
votes
1answer
127 views

Is it possible to have an SEO friendly Express.js Web site? [closed]

If Express provides a traditional route structure (i.e. http://yoursite.com/foo), will the pages show up on Google's Search Engine Results Page, similar to say a Wordpress blog or PHP Web site using ...
1
vote
4answers
2k views

Serving the socket.io javascript file to a client via node.js/express

I'm trying to get a sample client connection working with socket.io and express (specifically, this one: http://www.catonmat.net/blog/nodejs-modules-socketio/ with some pieces from the other examples ...
0
votes
1answer
611 views

Express.js get http method in controller

I am building a registration form (passport-local as authentication, forms as form helper). Because the registration only knows GET and POST I would like to do the whole handling in one function. ...
9
votes
1answer
2k views

Allow CORS REST request to a Express/Node.js application on Heroku

I've written a REST API on the express framework for node.js that works for requests from the js console in Chrome, and URL bar, etc. I'm now trying to get it working for requests from another app, on ...
14
votes
3answers
13k views

static files with express.js

I want to serve index.html and /media subdirectory as static files. The index file should be served both at /index.html and / URLs. I have web_server.use("/media", express.static(__dirname + ...
7
votes
2answers
5k views

Node.js/Express - Render error when page not found

I have the following controller/route definition in Node.js (using Express and Mongoose). What would be the leanest most appropriate way to handle Error when the user requests a page that does not ...
9
votes
5answers
7k views

Automatic HTTPS connection/redirect with node.js/express

I've been trying to get HTTPS set up with a node.js project I'm working on. I've essentially followed the node.js documentation for this example: // curl -k https://localhost:8000/ var https = ...
5
votes
2answers
2k views

Using express without a template engine

Is it possible to create an express (node) application without the need for a template engine such as jade or ejs. I've got a large final year project at university and i'm going to be using node, ...
39
votes
2answers
10k views

socket.io remove debug mode

I would like remove the debug frame mode. I use express,redis,socket.io and connect-redis I do not know where it comes from someone has an idea?

1 2 3 4 5 82