I have a project which is heavily JavaScript based (e.g. node.js, backbone.js, etc.). I'm using hashbang urls like /#!/about and have read the google ajax crawlable spec. I've done a wee bit of headless UI testing with zombie and can easily conceive of how this could be done by setting a slight delay and returning static content back to the google bot. But I don't really want to implement this from scratch and was hoping there was a pre-existing library that fits in with my stack. Know of one?

EDIT: At time of writing I don't think this exists. However, rendering using backbone (or similar) on server and client is a plausible approach (even if not a direct answer). So I'm going to mark that as answer although there may be better solutions in the future.

link|improve this question

77% accept rate
feedback

2 Answers

up vote 1 down vote accepted

There is one implementation using node.js and Backbone.js on the server and browser https://github.com/Morriz/backbone-everywhere

link|improve this answer
Although I'm not sure I'll use this, it's the closest to a plausible answer given there probably isn't a headless solution in js at this time ;) – Rob Mar 7 at 7:09
Please also consider this approach stackoverflow.com/questions/9413328/… – opengrid Mar 26 at 23:58
feedback

Backbone looks interesting: http://documentcloud.github.com/backbone/

http://lostechies.com/derickbailey/2011/09/26/seo-and-accessibility-with-html5-pushstate-part-1-introducing-pushstate/

link|improve this answer
1  
I don't see how this relates to my specific question. What does this have to do with generating HTML snapshots for use with the Google ajax spec? – Rob Feb 5 at 15:19
feedback

Your Answer

 
or
required, but never shown

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