I've made an angular app with Codeigniter on the server side using this angular-codeigniter-seed. I'm trying to add SEO to my app, and i'm using ui-router-metatags to have dynamic meta-tags on every page but the problem is that only Chrome's crawler runs javascript and waits for the DOM to load when it indexes pages, all the others(facebook, tweeter etc) don't, and they take the html as is.
There are a lot of paid services that pre-render the angular pages and cache them for when the crawler comes (seo4ajax, brombone, prerender.io etc), but i can't pay and i don't need the volumes that they offer.
So i'm thinking in the direction of rendering some pages(don't have to be all of them) on the server and serving them as ready HTMLs, how should i approach this?.
I'm running Angular 1.5.3, Codeigniter 3.0.4, ui-router 0.2.18 and the server runs Nginx.
here,s a sample from my routing:
.state('song', {
url: "/song/:songTitle",
templateUrl: root + 'templ/audio',
controller: 'audioController as audio',
resolve: {
songTitle: function ($stateParams) {
return $stateParams.songTitle;
},
songDescription: function (SongDescService) {
return SongDescService.getDescription();
}
},
metaTags: {
title: function (songTitle) {
return songTitle;
},
description: function(songDescription){
return songDescription;
},
properties: {
'og:title': function (songTitle) {
return songTitle;
},
'og:type': 'audio',
'og:description': function(songDescription){
return songDescription;
},
'og:image': root + 'images/logo.png'
}
}
})