Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
app.get("/:name?/:group?", function(req, res){...

is matching files that are in my public directory. So if I include a stylesheet:

<link type="text/css" href="/stylesheets/style.css" />

Node will match /stylesheets/style.css and assign name the value stylesheets and group the value style.css.

What's the best way to avoid this?

share|improve this question

3 Answers

up vote 13 down vote accepted

The easiest thing may be to make sure that express runs the static provider middleware prior to the router middleware. You can do this by doing:

app.use(express.static(__dirname + '/public'));
app.use(app.router);

That way the static file will find it and respond and the router won't be executed. I've had similar confusion with the router's default position (last) screwing up with my compilation of coffeescript files. FYI there are docs on this here (search the page for app.router and you'll see an explanatory paragraph.

share|improve this answer
This is exactly what I was looking for! Thanks – Luke Burns Jul 16 '11 at 20:28

You could also have a reverse proxy like Nginx handle the static files for you. I believe many professional Node / Ruby on Rails setups do it this way.

share|improve this answer

For anyone who may need it, my solution was using Middleware. If anyone finds a better solution, please let me know!

public = ['images', 'javascripts', 'stylesheets', 'favicon.ico']

ignore = (req, res, next) ->
    if public.indexOf(req.params.name) != -1
        console.log "Ignoring static file: #{req.params.name}/#{req.params.group}"
        next('route')
    else
        next()

app.get "/:name?/:group?", ignore, (req, res) -> ...
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.