Tagged Questions

Express is a MVC framework for Node.js for rapid development, also called ExpressJS. Plaese do *not* use this tag for "express" editions, e.g. Visual Studio Express or SQL Server Express.

learn more… | top users | synonyms

29
votes
5answers
4k views

ExpressJS How to structure an application?

I'm using the ExpressJS web framework for NodeJS. People using ExpressJS put their environments (development, production, test ...), their routes ... on the app.js. I think that it's not a beautiful ...
22
votes
2answers
7k views

Socket.IO Authentication

I am trying to use Socket.IO in Node.js, and am trying to allow the server to give an identity to each of the Socket.IO clients. As the socket code is outside the scope of the http server code, it ...
20
votes
3answers
8k views

Uploading images using NodeJS, Express, and Mongo

Since many new NodeJS librairies are quickly being rendered obsolete and there are relatively few examples anyways I want to ask about uploading images using the latest versions of Node (v0.4.1), ...
19
votes
1answer
4k views

Node.js Express vs Geddy

Since I'm going to be working with Node.js, I figured that using Express or Geddy would save me from repeating code that's already available. I'm looking for the pros and cons of each framework and ...
18
votes
7answers
6k views

socket.io and session?

I'm using express framework. I want to reach session data from socket.io. I tried express dynamicHelpers with client.listener.server.dynamicViewHelpers data, but i can't get session data. Is there a ...
11
votes
7answers
2k views

Express module not found when installed with NPM

When I try to run the app.js file created by express, I get the following error: $ node app.js node.js:134 throw e; // process.nextTick error, or 'error' event on first tick ^ Error: ...
11
votes
3answers
632 views

Can't get rid of header X-Powered-By:Express

I am running a server on nodejs with express. I can't seem to get rid of the header: X-Powered-By:Express I was wondering if there is any way to get rid of this header or do I have to live with it? ...
11
votes
4answers
2k views

ExpressJS: how to output pretty html

I've noticed that while using ExpressJS for Node.js, it outputs the html code without any newline characters or tabs. It's not very pretty, although it could technically be more efficient for ...
11
votes
5answers
6k views

Render basic HTML view in Node JS Express?

I have a basic node js app that I am trying to get off the ground using Express framework. I have a Views folder where I have an "index.html" file. But I receive the following error when loading the ...
11
votes
1answer
2k views

What is the layout `yield` method in ejs?

I'm just starting with node.js + express + ejs. I can't find anywhere how to pull in the requested ejs file to the layout file. I know full well that yield is not the right thing here. e.g. ...
10
votes
1answer
2k views

Error handling principles for NodeJS + Express apps?

It seems like error reporting/handling is done differently in NodeJS+Express apps compared to other frameworks. Am I correct in understanding that it works as follows? A) detect errors by receiving ...
8
votes
4answers
3k views

NodeJS + CoffeeScript, render coffeescript compiled js on request

What I would like to do is add the following to me already running coffeescript written server app.get '/test.js', (req, res) -> render coffee somecoffeefile.coffee Is something like this ...
7
votes
4answers
1k views

Is Node.js a good alternative to build complete websites?

I'm wondering if using Node.js (express.js) is the best option to go for a complete website. I've been using Rails + Node.js and am wondering if this is still the best option or if I should move ...
7
votes
4answers
278 views

How to access session in express, outside of the req?

I know that I can use function(req, res) { req.session } using express. However I need to access the session outside of the response function. How would I go about doing that? I'm using ...
7
votes
2answers
2k views

how to use sessions in express, couchDB, and node.js

so I basically want to use sessions to store the users name and check to see if the user logged in or not. If not, the page will redirect to the login page. I am using Node.js,express,and couchDB. ...
6
votes
1answer
275 views

What is the correct way to launch your server from vows for testing?

I have an express server which I am testing using vows. I want to run the server from within the vows test suite, so that I dont need to have it running in the background in order for the test suite ...
6
votes
4answers
2k views

how to get GET (query string) variables in node.js?

Can we get the variables in query string in node.js just like we get in $_GET in PHP? I know that in node.js we can get the url in request. Is there any method to get query string parameters?
6
votes
4answers
1k views

How I redirect 404 errors to a custom page in Express-Js

I don't find a function for that... Anyone knows?
6
votes
3answers
902 views

NodeJS: How to get the server's port?

You often see example hello world code for Node that creates an Http Server, starts listening on a port, then followed by something along the lines of: console.log('Server is listening on port ...
5
votes
2answers
68 views

How to do customer/client style subdomains using Node and Express

How does one allow customers to access a SaaS using their organization name in the domain? For example, a web app, example.com, may have 2 customers, OrgA and OrbB. Once logged in, each customer is ...
5
votes
3answers
72 views

How does this work? Optional first argument used in Express (err, req, res, next) or (req, res, next)

With Express / Connect I can set up an middleware function in either of the formats: function(req, res, next) // first argument will be a request Or function(err, req, res, next) // first ...
5
votes
1answer
252 views

node.js - using weld with express?

I'm new to node.js, and attempting to use weld (https://github.com/hij1nx/weld) to render templates on the server-side and using express as the router. However the examples for node.js don't show ...
5
votes
3answers
989 views

Node + Mongoose: Get last inserted ID?

I want to retrieve the last inserted _id, using mongoose as MongoDB wrapper for node.js. I've found the following tutorial, but I can't change any node modules because the app runs on a public server: ...
5
votes
2answers
2k views

How to include route handlers in multiple files in Express

In my node.js express application I have app.js that has a few common routes. Then in a wf.js file I would like to define a few more routes. How can I get app.js to recognize other route handlers ...
5
votes
3answers
517 views

Just picking up node. Should I use express or really learn node first?

As the title stated, I'm just now picking up node. I've looked into Express a little, mostly by watching the videos on expressjs.com, and was pretty impressed. However, it reminded me a lot of Rails. ...
5
votes
2answers
847 views

Mongoose won't remove embedded documents

I'm scratching my head here, as usual it seems with node projects, and I'm not sure if I'm doing something wrong or if I've run into a bug. I've got a schema of Server that can have any number of ...
5
votes
3answers
7k views

Node.js - cannot find module

I'm using Node Boilerplate and it all worked fine until I decided create another project on top of it(in another dir). Now I have exactly the same code base(this project AS IS) in two different ...
5
votes
4answers
1k views

How do you modularize Node.JS w/Express

I'm trying to modularize my node.js application (using express framework). The trouble I am having is when setting up my routes. I am no longer able to extract the data I send to the post. (req.body ...
4
votes
1answer
85 views

Express.js custom template engine (plate)

I am trying to get plate template engine to work with express.js. My initial attempt was this: app.register('.html', { compile: function (str, options) { var template = new ...
4
votes
1answer
124 views

Does it make sense to render templates server-side?

I'm learning about the tempting engine Jade bundled with Express. As I understand, Jade allows for server-side rendering. Isn't that suboptimal for two reasons: 1) The server has to compute more to ...
4
votes
2answers
361 views

creating registration and login form in node.js and mongodb

I am new to node.js and want to create a registration and login page for user.also there has to proper authorisation for the user.I want to store the user information inside mongodb database.How can i ...
4
votes
3answers
420 views

How do you handle form validation, especially with nested models, in Node.js + Express + Mongoose + Jade

How are you handling form validation with Express and Mongoose? Are you using custom methods, some plugin, or the default errors array? While I could possibly see using the default errors array for ...
4
votes
2answers
103 views

How to generate a random number for each page?

I'm using node.js and express, and I'd like to generate a random five-figure number in app.js and return it to the client. I'd like to do this on the server rather than the client, because I want to ...
4
votes
1answer
459 views

Node.js/Express form post req.body not working

I'm using express and having trouble getting form data from the bodyParser. No matter what I do it always comes up as an empty object. Here is my express generated app.js code (the only thing I ...
4
votes
2answers
175 views

Can someone explain what middleware is and what app.use actually means?

Almost every Express app i see has an app.use statement for middleware but I haven't found a clear, concise explanation of what middleware actually is and what the app.use statement is doing. Even the ...
4
votes
1answer
790 views

nodejs remove debug mode

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

An explanation of session support using Express and Socket.IO?

I'm looking for some help figuring out sessions on a server that relies on express and socket.io. Mostly the goal is handling things like pairing socket.io session ids with user ids, maintaing state ...
4
votes
2answers
1k views

express command not found in bash after installing it with npm

just installed new ubuntu vm to test around with node installed things in this order: node mongodb-server npm express mongoose now, trying to create a new app i noticed express cannot be used in ...
4
votes
2answers
2k views

How can I configure multiple sub domains in Express.js or Connect.js

I am used to working on httpd ( Apache ) which provides a way to configure subdomains which is mapped to a directory. How can I do the same thing in Connect.js/Express.js ? I see that the only thing ...
4
votes
2answers
977 views

Using javascript code in Jade views - if(variable) shows undefined instead of passing

So this is a recurring issue I have and haven't found another example on SO so here goes: When rendering Jade templates I get 'variableName' undefined even when using -if(variableName) in the ...
4
votes
2answers
876 views

Client side templates and partial views and express

We have a large amount of client side templating solutions recently including: jquery templates John resig micro templating handle bars EJS and more As far as I can see only jQuery templates ...
4
votes
4answers
3k views

Node.js with Express: Importing client-side javascript using script tags in Jade views?

I've got a node.js express server running with the Jade template engine. I've got a layout jade file which imports the body of individual views like so: !!! html head title= title || ...
4
votes
1answer
1k views

How to validate and handle a form in Express (NodeJS)

Is there a preferred form handling and validation library for Express? I'm really looking for a similar level of abstraction as is found in Django forms - i.e. validation and error reporting in the ...
3
votes
1answer
94 views

coffeescript, jade, stylus -> js, css asset manager? node.js

I work in coffeescript, jade and stylus. My application serves two different "one page apps". For these apps I serve all asset in the initial payload. I want to group, compile, and concatenate all ...
3
votes
1answer
79 views

Account for Backbone.js pushState routes with node.js express server?

pushState support was introduced with Backbone.js' version 0.5 update. From the backbone documentation: Note that using real URLs requires your web server to be able to correctly render those ...
3
votes
1answer
61 views

Working with Routes in express js and socket.io and maybe node in general

I am trying to write a multi channel application in socket.io. The channel you are in should be defined by the url you are on. If I do the joining part in the app.js with permanent values everything ...
3
votes
3answers
110 views

Inline condition in Jade

- if (typeof(person) == 'undefined') input(type="text", name="person[Name]") - else input(type="text", name="person[Name]", value="#{person.Name}") Is there any way to write this inline? ...
3
votes
1answer
295 views

Nodejs/Expressjs app structure

Say i have this code to separate routes in expressjs: module.exports = function(express,app,client) { app.get('/', function(req,res,next) { var query = 'SELECT * FROM users LIMIT ...
3
votes
3answers
270 views

Learning Express for Node.js

Anyone have pointers to good resources for learning Express? I'm aware of the documentation and the nodetuts.com videos. Curious if there are any other good resources out there.
3
votes
1answer
45 views

Oracle stored procedure

Can anyone help me by telling me what is wrong with the following syntax? I am just trying to run a simple SELECT statement in a stored procedure. CREATE OR REPLACE PROCEDURE ...

1 2 3 4 5 13