Express 4, NodeJS, AngularJS routing Express 4, NodeJS, AngularJS routing express express

Express 4, NodeJS, AngularJS routing


I'm assuming you are using a "single page" angular app, so one html page that uses ng-view to load all the other partials.

In this case you need to do something like this:

Express 4:

var express = require('express'),    app = express(),    server = require('http').Server(app),    bodyParser = require('body-parser'),    db = require('./db'),    io = require('./sockets').listen(server),    apiRoutes = require('./routes/api'),    webRoutes = require('./routes/web');app.use(bodyParser.json());app.use(bodyParser.urlencoded({  extended: true}));app.use('/api', apiRoutes);app.use(express.static(__dirname + '/public'));// Here's the new code:app.use('/*', function(req, res){  res.sendfile(__dirname + '/public/index.html');});server.listen(3000, function() {  console.log('Listening on port %d', server.address().port);});

The problem you're facing is that even though you have routes setup for '/login' before the routes are fired they need to be loaded. So the server tries to find a match for the route '/login' which it can't returning the 404. In the case of single page angular apps all the routes you use in routing must be caught by a route, app.get('/*', ... in this case, and then return the main angular.js html page. Note that this is the last call so it will be evaluated last, if you put it first it will prevent all the subsequent rules from running as express just runs the handler for the first rule it encounters.