prettybigmonster / prerender

Node server that uses phantomjs to render a javascript-rendered page as HTML. To be used in conjunction with prerender middleware.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Prerender Service

This is a node server that uses phantomjs to render a javascript-rendered page as HTML. It should be used in conjunction with these middleware libraries to serve the rendered HTML to crawlers for SEO. You don't have to run this service on your own since I have it deployed on Heroku already. Get started in two lines of code using Rails or Node.

This service also adheres to google's _escaped_fragment_ proposal for AJAX calls if you use it on your website.

It is also meant to be proxied through your server so that any relative links to things like CSS will work.

It is currently deployed at http://prerender.herokuapp.com, or you can deploy your own.

Deploying your own

$ git clone https://github.com/collectiveip/prerender.git
$ heroku create
$ git push heroku master

Running locally

If you are running the prerender service locally. Make sure you set your middleware to point to your local instance with: export PRERENDER_SERVICE_URL=<your local url> Otherwise, it will 404 and your normal routing will take over and render the normal JS page.

$ npm install
$ node index.js
// also supports heroku style invocation using foreman
$ foreman start

How it works

This is a simple service that only takes a url and returns the rendered HTML (with all script tags removed).

Note: you should proxy the request through your server so that relative links to CSS still work (see prerender_rails or prerender-node for an example)

GET http://prerender.herokuapp.com/https://google.com

GET http://prerender.herokuapp.com/https://google.com/search?q=angular

Why do you remove script tags?

We remove script tags because we don't want any framework specific routing/rendering to happen on the rendered HTML once it's executed by the crawler. The crawlers may not execute javascript, but we'd rather be safe than have something get screwed up.

For example, if you rendered the HTML of an angular page but left the angular scripts in there, your browser would try to execute the angular routing and rendering on a page that no longer has any angular bindings.

Cache management

We use cache management to reduce the latency on common requests
The default is an in memory cache but you can easily change it to any caching system compatible with the cache-manager nodejs package.

For example, with the request:

GET http://prerender.herokuapp.com/https://facebook.com

First time: Overall Elapsed: 00:00:03.3174661

With cache: Overall Elapsed: 00:00:00.0360119

By default, cache system isn't enabled, you need to start prerender with -c or --cache to enable it.

node index.js -c

Middleware

This is a list of middleware available to use with the prerender service:

Official middleware

Javascript
Ruby

Community middleware

PHP

Request more middleware for a different framework in this issue.

License

The MIT License (MIT)

Copyright (c) 2013 Todd Hooper <todd@collectiveip.com>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

Node server that uses phantomjs to render a javascript-rendered page as HTML. To be used in conjunction with prerender middleware.

License:MIT License