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)

1
vote
1answer
9 views

Private, local (and app specific) modules

I have a Node.js app with following structure: + |-- app/ | |-- config.js | |-- modules/ // MVC app modules/components. | |-- login/ | |-- signup/ |-- lib/ // App ...
0
votes
0answers
10 views

Secure file uploader by express js and bodyParser

I google a lot for finding how to secure file uploading in express js,at end I develop following code to do it. app.use(express.json()); app.use(express.urlencoded()); ...
0
votes
0answers
15 views

express, coffeescript, Title not working

I have the coffee file, I am following peepcode screencast 069. routes = (app) -> app.get '/login', (req, res) -> res.render "#{__dirname}/views/login", title: 'Login' stylesheet: ...
0
votes
2answers
23 views

Mulitple express instances in a node.js script

I inherited a Node.js code and got stuck with these lines .... var app1 = express(); app1.listen(8080) var app2 = express(); app2.listen(8081) var app3 = express(); app3.listen(8082) .... all ...
0
votes
0answers
13 views

Modify headers of proxied request

I'm IP restricting a CORs demo application which interacts with an authenticated third-party API. I've got a "middleware" server running which I use to proxy requests from the CORs app to the ...
0
votes
2answers
22 views

How to mount app.get() routes on a particular path prefix

I'm writing an API using Node.js and Express. My API has GET methods of the form: /api/v1/doSomething /api/v1/doSomethingElse My code is looking something like this: server.js: var app = ...
0
votes
0answers
18 views

NodeJS process gets 100% and doesn't process newer requests

I'm developing a REST API based on NodeJS 0.10.2 + Express 3.x + MongoDB. I started to stress the platform and find how many users can be served. The initial scenario is 5 concurrent users calling ...
0
votes
1answer
19 views

Node.js Error: Cannot find module express

I wrote my first node.js app, but it can't find express library: C:\ChatServer\Server>node server.js module.js:340 throw err; ^ Error: Cannot find module 'express' at ...
0
votes
0answers
22 views

Security in Expressjs

I am looking to build a web-app which also has mobile clients using express. But what has been concerning me is the security issues with the framework. I want to know what are the current security ...
0
votes
1answer
17 views

Node ExpressJS Input Validation

Im using node 0.10.8 and expressJS 3.2.5. I installed express-validator: npm install express-validator In app.js: var express = require('express') , i18n = require('i18next') , routes = ...
0
votes
2answers
19 views

Route params not getting sent to ExpressJS API

I'm scratching my head on this. I'm running an expressjs site with angularjs as my front-end resource, and my problem is that I've set up my API to query my datastore with a parameterized query. When ...
0
votes
1answer
16 views

each in loop in jade template unescape issues

I am trying to use a json object in my jade template and for some reason I can't seem to unescape it so the each item i loop is seeing every single character rather than the object variables. I have ...
0
votes
1answer
11 views

Expressjs app.locals in {{#each …}} not accessible

Hello i have something very simple: <!DOCTYPE html> <html> <head> <title></title> <link rel="stylesheet" ...
0
votes
1answer
24 views

express.js - dynamic pageloads via ajax

ok i'm that far: app.get('/mypartial', function (req. res) { res.render('mypartial', {layout: false, data: data}); }); this renders out my jade with the data and sends it as html to the client ...
0
votes
2answers
28 views

Only some of the files get copied from sourceFolder to destinationFolder

Good morning, I'm creating a small application as part of a learning project. I'm using Visual Express 2010 and the language is C#. I've set up two folders (destinationFolder and sourceFolder). The ...
0
votes
1answer
9 views

Regex routing with Express, optional pattern matching doesn't seem to work?

I'm using a route like this: app.get( '/(aaa(?:&bbb)*)' which should match /aaa /aaa&bbb /aaa&bbb&bbb&bbb but it's only matching /aaabbb I've removed the repeating ...
0
votes
1answer
10 views

Using SocketIO in external lib for expressjs

my app.js is started with following code var express = require("express"), app = express(), http = require('http'), server = http.createServer(app), io = ...
1
vote
2answers
30 views

Authentication using Facebook with Passportjs: what is accessToken for, what should I store after registration?

I am using Passport to register/authenticate using Facebook. When oAuth is successful, I am returned: accessToken refreshToken profile Now... when a user successfully registers using Facebook, I ...
0
votes
1answer
21 views

Correct way to use before save hooks on mongoose.js

I'm trying to put together a before save callback on my Mongoose model. The callback is suppose to make a GET request to an API and save the response to a field of the object. Due to the nature of ...
0
votes
0answers
26 views

Run node server from php script (cron)

I wrote php script that runs node server: <?php file_put_contents("/var/www/executed.txt", "wykonano"); $url = "http://xxx.pl"; $http = curl_init($url); curl_setopt($http, CURLOPT_RETURNTRANSFER, ...
0
votes
1answer
21 views

Set up include path in node.js (express.js)

I want to deploy node.js application from my own upstart script and cron. The app starts but doesn't work because can't include files. I have errors: Error: Failed to lookup view "front/index" How ...
2
votes
1answer
22 views

node.js with express - showing custom error message

I am using node.js and express and I want to show custom error message when the requested page is not found. Currently I am doing it by using a Wildcards. If any of the routes doesn't match then the ...
0
votes
1answer
129 views

how stable is AirBnB node.js rendr?

I wanted to know if anyone has been using AirBnB Rendr and is it stable and ok to use in commercial projects or is it still changing a lot? I'm developing a website which can run both client and ...
1
vote
1answer
36 views

How to change URL for users using socket.io?

I am making a game for TWO players with node.js, socket.io and express. In order to avoid effect from the third person that come to play, i want to generate specific URL for the two who are ready to ...
0
votes
1answer
22 views

less-middleware does't work - “Express 500 Error: Unrecognised input”

I'm using Express framework with less-middleware and jade template engine When I'm trying to get my css file in browser "/css/style.css" - I get the error "Express 500 Error: Unrecognised input" ...
0
votes
1answer
50 views

Node.js get image from web and encode with base64

I'm trying to fetch an image from the web and encode it with base64. what i have so far is basically: var request = require('request'); var BufferList = require('bufferlist').BufferList; bl = new ...
1
vote
1answer
39 views

Express middleware: app.use and app.all

Is there a difference between app.use('/some/path', function(req, res, next() {}) and app.all('/some/path', function(req, res, next() {}) They are both middleware functions that get called for ...
0
votes
0answers
53 views

How to create a simple blog service in Node.js and Express? [closed]

I'm now learning Node.js and Express to create a web application. I've got how to use database, render HTML file, got GET/POST request from a form, etc... However, one of the things I still cannot get ...
0
votes
1answer
17 views

Unexpected value for 'this' in express.js instantiated controllers

'this' does not appear to refer to the instantiated budget controller object. Instead it seems to refer to the global object. Does anyone know why this is? I've defined a budget model. Injected into ...
0
votes
1answer
56 views

Best way to setup node.js database MongoDB/Redis?

So here's my deal. I'm using node on the express framework. The website i'm working on grabs scraped data and stores it for each user on the website. That data can then be displayed on the users page ...
0
votes
1answer
18 views

How do I write predicate instance methods with mongoose?

A semi-noob node guy here. In my jade templates ... I'd really love to be able to have this interface: if currentUser.isMemberOfGroup(name) -// dosomething However, determining a user's ...
0
votes
1answer
23 views

SpineJS + Express

Does anyone know of any tutorials or examples of applications built with SpineJS and Express? I've played around a lot with both but struggling to understand a few points. Currently I've got my back ...
0
votes
1answer
26 views

How to render multiple result from MySQL query on the same .ejs file on Node.js and Express?

I'm now learning Node.js and creating a web application, but don't know how to render twice on the same .ejs file. So in the following .ejs file: <table> <% rows.forEach(function(ind){ ...
-2
votes
0answers
27 views

Is there a systematic approach to node.js express and socket? [closed]

I am new to web developing language, but recently my school project demanded me to pick up node using express framework with socket. I have been reading through node tutorials I found on this site, ...
1
vote
2answers
63 views

restricting access to all routes but one

I'm starting to experiment with expressJS + angularJS and i've run into a stressful situation. My goal is to have one login page and one dashboard page, and using passport + mongodb i'll authenticate ...
0
votes
0answers
13 views

Storing and retrieving images from MongoDB together with JSON response using Monogoose and Express?

This example shows how to save and image and later retrieve it via res.contentType and res.send. In my case I am already return JSON object via res.send. But I also need to render images. How could I ...
0
votes
0answers
8 views

Locomotivejs Check MongoDB connection before all actions

I want to check MongoDB connection and reconnect to it if it's not in "connected" state, before any query is made to it from withing a LocomotiveJS server. A possible way is to add have it in the ...
1
vote
1answer
49 views

Optimizing Node.js inbound/outbound connections

I have question about node.js inbound/outbound connections. Lets consider my situation or what I want to achieve: I have for example X inbound http requests per second. For every request I create ...
0
votes
0answers
17 views

everyauth error: missing code in querystring

I am using express with everyauth. When I authenticate using facebook I got the exception: Missing code in querystring. The url looks like ...
0
votes
0answers
25 views

Creating subresources with express resource

I'm creating a basic API to learn some more about Node and Express, and I'm using the express-resource extension. Basically, the app manages player rankings, eg: for a chess tournament or similar. I ...
0
votes
1answer
35 views

how can I make express render any jade file in one directory, regardless of path depth?

I have an app with views that are in directories like so: $ ftree ./web/views | |____views | | |____index.jade | | |____404.jade | | |____partials | | | |____test.index.jade | | | |____index.jade | ...
0
votes
1answer
23 views

express without a template

Is there a reason why I should avoid doing this? app.configure(function(){ app.set('port', process.env.PORT || 3000); app.set("view options", {layout: false}); app.use(express.static(__dirname ...
0
votes
1answer
31 views

How can I get phantom to “execute” my page?

I have a script tag inside my page but it isn't being run. It is simply rendered. I have the following code: var phantom = require('phantom'); phantom.create(function(ph,error) { c = callback; ...
0
votes
1answer
48 views

Restify.js (Connect/Express) middleware ignoring call to next() within promise callback

So. I'm experiencing some quirks when attempting to implement some basic middleware for a Restify.js application I'm building with specific regard to next() and promise callbacks. To express the ...
1
vote
1answer
15 views

Opening Page with Express

I have read around about this a lot and it seems like its an issue that confuses a lot people. I am doing a project with express and I dont want to you any tempting engines, I am using backbone with ...
0
votes
0answers
24 views

Web application build using node and express not able to connect with mongodb hosted on mongohq

I have created a web app using express.js and node.js and hosted that on Heroku. I am using MongoDB with my above application and i have hosted my mongoDb instance on "mongohq.com". So after hosting ...
0
votes
1answer
19 views

call app.get inside response.render

How can I call another express route inside response.render. Following is my code snippet. I would like to render performance.jade when /pages/performance is requested and populate the jade with data ...
0
votes
2answers
26 views

passportjs get authentication error message

I am using passportjs for facebook authentication. Here is my facebook strategy: passport.use(new FacebookStrategy({ clientID: config.facebook.clientID, clientSecret: ...
0
votes
2answers
29 views

Where should be located a database config file in Node.js and Express?

I'm now learning Node.js and Express, and want to call mysql module to render multiple unique pages, so instead of writing out var connection=mysql.createConnection({user:'root', password: ...
0
votes
2answers
35 views

Modules requiring each other cause error “Maximum call stack size exceeded”

I have two different modules that need to require each other. I understand it creates an infinite loop and can't work. Is there a way to circumvent it?

1 2 3 4 5 87