I want to be able to load a blog post when a user is directed to /feed/:id and I want this page to load in Angular.js. Basically I want Node to pass the post title, content, etc. to the Angular template in JSON format (post.html) and for Angular to use the JSON attributes of the post (post.name, post.content, etc...).
I know how to build the API on the Node side to get this data from a MongoDB datastore but I'm not entirely sure how to pass it on to the Angular controller once I have it in Node.