We have put together a small service for those who want to serve static snapshots of their dyanmic content to google and other serach bots.
e.g.
(see the two todo items are present there and those are angularjs generated)
You just have to wire up your backend to respond to googles _escaped_fragment_ requests .
pseudo code:
server code:
if (querystring.containskey("_escaped_fragment_")
{
var page = querystring["_escaped_fragment_"];
response.write(html);
response.end();
return;
}
Sorry if this comes out as promotion or anything, but I build this service to scrape my own angularjs site for search engine indexing.
Maybe someone else have some use for it..
//Roger