There are a lot of cool tools for making powerful "single-page" JavaScript websites nowadays. In my opinion, this is done right by letting the server act as an API (and nothing more) and letting the client handle all of the HTML generation stuff. The problem with this "pattern" is the lack of search engine support. I can think of two solutions:

  1. When the user enters the website, let the server render the page exactly as the client would upon navigation. So if I go to http://example.com/my_path directly the server would render the same thing as the client would if I go to /my_path through pushState.
  2. Let the server provide a special website only for the search engine bots. If a normal user visits http://example.com/my_path the server should give him a JavaScript heavy version of the website. But if the Google bot visits, the server should give it some minimal HTML with the content I want Google to index.

The first solution is discussed further here. I have been working on a website doing this and it's not a very nice experience. It's not DRY and in my case I had to use two different template engines for the client and the server.

I think I have seen the second solution for some good ol' Flash websites. I like this approach much more than the first one and with the right tool on the server it could be done quite painlessly.

So what I'm really wondering is the following:

  • Can you think of any better solution?
  • What are the disadvantages with the second solution? If Google in some way finds out that I'm not serving the exact same content for the Google bot as a regular user, would I then be punished in the search results?
link|improve this question

40% accept rate
2  
"Application" doesn't mean the same thing to everybody, but to me it implies display and collection of data such that I wouldn't want search engines indexing anything but the first page anyway... – nnnnnn Sep 25 '11 at 23:54
You are absolutely right. I've edited my question, so now I use "website" consequently instead. – user544941 Sep 26 '11 at 0:03
feedback

6 Answers

while #2 might be "easier" for you as a developer, it only provides search engine crawling. and yes, if google finds out your serving different content, you might be penalized (i'm not an expert on that, but i have heard of it happening).

both SEO and Accessibility (not just for disabled person, but accessibility via mobile devices, touch screen devices, and other non-standard computing / internet enabled platforms) both have a similar underlying philosophy: semantically rich markup that is "accessible" (i.e. can be accessed, viewed, read, processed, or otherwise used) to all tese different browsers. a screen reader, a search engine crawler or a user with javascript enabled, should all be able to use/index/understand your site's core functionality without issue.

pushstate does not add to this burden, in my experience. it only brings what used to be an afterthought and "if we have time" to the forefront of web development.

what your describe in option #1 is usually the best way to go - but, like other accessibility and SEO issues, doing this with pushstate in a javascript heavy app requires up-front planning or it will become a significant burden. it should be baked in to the page and application architecture from the start - retrofitting is painful and will cause more duplication than is necessary.

i've been working with pushstate and SEO recently for a couple of different application, and i found what i think is a good approach. it basically follows your item #1, but accounts for not duplicating html / templates.

most of the info can be found in these two blog posts:

http://lostechies.com/derickbailey/2011/09/06/test-driving-backbone-views-with-jquery-templates-the-jasmine-gem-and-jasmine-jquery/

and

http://lostechies.com/derickbailey/2011/06/22/rendering-a-rails-partial-as-a-jquery-template/

the gist of it is that i use ERB or HAML templates (running ruby on rails, sinatra, etc) for my server side render and to create the client side templates that backbone can use, as well as for my jasmine javascript specs. this cuts out the duplication of markup between the server side and the client side.

from there, you need to take a few additional steps to have your javascript work with the html that is rendered by the server - true progressive enhancement; taking the semantic markup that got delivered and enhancing it with javascript.

for example, i'm building an image gallery application with pushstate. if you request /images/1 from the server, it will render the entire image gallery on the server and send all of the html, css and javascript down to your browser. if you have javascript disabled, it will work perfectly fine. every action you take will request a different url from the server and the server will render all of the markup for your browser. if you have javascript enabled, though, the javascript will pick up the already rendered HTML along with a few variables generated by the server and take over from there.

here's an example:

<form id="foo">
  Name: <input id="name"><button id="say">Say My Name!</button>
</form>

after the server renders this, the javascript would pick it up (using a backbone.js view in this example)

FooView = Backbone.View.extend({
  events: {
    "change #name": "setName",
    "click #say": "sayName"
  },

  setName: function(e){
    var name = $(e.currentTarget).val();
    this.model.set({name: name});
  },

  sayName: function(e){
    e.preventDefault();
    var name = this.model.get("name");
    alert("Hello " + name);
  },

  render: function(){
    // do some rendering here, for when this is just running javascript
  }
});

$(function(){
  var model = new MyModel();
  var view = new FooView({
    model: model,
    el: $("#foo")
  });
});

this is a very simple example, but i think it gets the point across.

when i instante the view after the page loads, i'm providing the existing content of the form that was rendered by the server, to the view instance as the el for the view. i am not calling render or having the view generate an el for me, when the first view is loaded. i have a render method available for after the view is up and running and the page is all javascript. this lets me re-render the view later if i need to.

clicking the "Say My Name" button with javascript enabled will cause an alert box. without javascript, it would post back to the server and the server could render the name to an html element somewhere.

Edit

consider a more complex example, where you have a list that needs to be attached (from the comments below this)

say you have a list of users in a <ul> tag. this list was rendered by the server when the browser made a request, and the result looks something like:

<ul id="user-list">
  <li data-id="1">Bob
  <li data-id="2">Mary
  <li data-id="3">Frank
  <li data-id="4">Jane
</ul>

Now you need to loop through this list and attach a backbone view and model to each of the <li> items. With the use of the data-id attribute, you can find the model that each tag comes from easily. you'll then need a collection view and item view that is smart enough to attach itself to this html.

UserListView = Backbone.View.extend({
  attach: function(){
    this.el = $("#user-list");
    this.$("li").each(function(index){
      var userEl = $(this);
      var id = userEl.attr("data-id");
      var user = this.collection.get(id);
      new UserView({
        model: user,
        el: userEl
      });
    });
  }
});

UserView = Backbone.View.extend({
  initialize: function(){
    this.model.bind("change:name", this.updateName, this);
  },

  updateName: function(model, val){
    this.el.text(val);
  }
});

var userData = {...};
var userList = new UserCollection(userData);
var userListView = new UserListView({collection: userList});
userListView.attach();

In this example, the UserListView will loop through all of the <li> tags and attach a view object with the correct model for each one. it sets up an event handler for the model's name change event and updates the displayed text of the element when a change occurs.


this kind of process, to take the html that the server rendered and have my javascript take over and run it, is a great way to get things rolling for SEO, Accessibility, and PushState support.

hope that helps.

link|improve this answer
I get your point, but what's interesting is how the rendering is done after "your JavaScript takes over". In a more complicated example you may have to use an uncompiled template on the client, looping through an array of users to build a list. The view re-renders every time a user's model changes. How would you do that without duplicating the templates (and not asking the server to render the view for the client)? – user544941 Sep 26 '11 at 11:49
the 2 blog posts i linked should collectively show you how to have templates that can be used on the client and server - no duplication needed. the server will need to render the entire page if you want it to be accessible and SEO friendly. i've updated my answer to include a more complex example of attaching to a user list that was rendered by the server – Derick Bailey Sep 26 '11 at 13:24
feedback

I think you need this: http://code.google.com/web/ajaxcrawling/

You can also install a special backend that "renders" your page by running javascript on the server, and then serves that to google.

Combine both things and you have a solution without programming things twice. (As long as your app is fully controllable via anchor fragments.)

link|improve this answer
Actually, it's not what I'm looking for. Those are some variants of the first solution and as I mentioned I'm not very happy with that approach. – user544941 Sep 26 '11 at 0:10
You didn't read my whole answer. You also use a special backend that renders the javascript for you - you don't write things twice. – Ariel Sep 26 '11 at 0:18
Yes, I did read that. But if I did get you right that would be one hell of a program, since it would have to simulate every action which triggers the pushState. Alternatively, I could give the actions to it directly, but then we aren't so DRY anymore. – user544941 Sep 26 '11 at 0:29
I think it's basically a browser without the front. But, yes, you do have to make the program completely controllable from anchor fragments. You also need to make sure all links have the proper fragment in them, along with, or instead of, onClicks. – Ariel Sep 26 '11 at 0:35
feedback

To take a slightly different angle, your second solution would be the correct one in terms of accessibility...you would be providing alternative content to users who cannot use javascript (those with screen readers, etc.).

This would automatically add the benefits of SEO and, in my opinion, would not be seen as a 'naughty' technique by Google.

link|improve this answer
Yes, I guess so. Lets see if someone can prove us wrong. :) – user544941 Sep 26 '11 at 0:12
feedback

If you are ready to back to the server, your life will be a lot of easier because your sites can be Single-Page and in the same time based on pages (SEO compatible), take a look to ItsNat:

http://www.innowhere.com:8080/insites/insservlet?itsnat_doc_name=eci_enter

http://itsnat.sourceforge.net/index.php?_page=support.tutorial.spi_site

link|improve this answer
feedback

Use Google Closure Template to render pages. It compiles to javascript or java, so it is easy to render the page either on the client or server side. On the first encounter with every client, render the html and add javascript as link in header. Crawler will read the html only but the browser will execute your script. All subsequent requests from the browser could be done in against the api to minimize the traffic.

link|improve this answer
feedback

If you're using Rails, try poirot. It's a gem that makes it dead simple to reuse mustache or handlebars templates client and server side.

Create a file in your views like _some_thingy.html.mustache.

Render server side:

<%= render :partial => 'some_thingy', object: my_model %>

Put the template your head for client side use:

<%= template_include_tag 'some_thingy' %>

Rendre client side:

html = poirot.someThingy(my_model)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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