Skip to content

Instantly share code, notes, and snippets.

@GustavoCaso
Last active August 29, 2015 14:23
Show Gist options
  • Save GustavoCaso/3f3c2f36ec36c73781be to your computer and use it in GitHub Desktop.
Save GustavoCaso/3f3c2f36ec36c73781be to your computer and use it in GitHub Desktop.
Posible solution for improving performance JobandTalent mobile website

This is the research information I gather

interesting URL's

interesting resources

Conclusions so far

We have make our mobile site as light as possible, we have to reduce to the minimun the libraries that our page depends on and our request per page.

I suggest removing jQuery from mobile, because everything can be done with Javascript Dom manipulation, also use sytem fonts, this will remove all the request to typekit. Move all the third part script to the bottom and optimize them to load async that way it won't stop the page from loading.

There are 3 possible way of serveing HTML, CSS, Javscript etc..

  • Server Side (We use this one rigt know)
  • Client
  • Mix

Right know we are using Server Side.

We might want to try an hibrid with backbone and rails that way we reduce the minimun request per page. There is another solution with PushState and turbolinks, the people from BaseCamp use. Other big platform tryed moving to a client sde app but eventually came back to use a mix solution.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment