Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement middleware in more frameworks/languages #12

Open
16 of 19 tasks
thoop opened this issue Oct 12, 2013 · 68 comments
Open
16 of 19 tasks

Implement middleware in more frameworks/languages #12

thoop opened this issue Oct 12, 2013 · 68 comments
Labels

Comments

@thoop
Copy link
Contributor

thoop commented Oct 12, 2013

I'll keep this list updated as more middleware is added.

Feel free to implement one of the frameworks that people are asking for!

Add a comment if you'd like to see more middleware in another language/framework, and I'll add it to the list!

@Stanback
Copy link

It's also possible to use the prerender service as a proxy with Nginx.

Edit - the configuration is now in this Gist: https://gist.github.com/Stanback/6998085

This config will serve existing files directly and use index.html for any other URLs (hash bang, push state, etc). A prerendered page is shown for the list of user agents or by manually appending the query string ?prerender=1 to the URL.

@stumpyfr
Copy link
Contributor

nice solution :)

@thoop
Copy link
Contributor Author

thoop commented Oct 15, 2013

@Stanback Awesome! Will you make a public gist of that? That way people can fork/edit/share it.

Can you also make it point to prerender.herokuapp.com and can you check the query string for the key _escaped_fragment_? That way it will work out of the box for people.

Once you do, let me know and I'll add it to prerender.io and the list of middleware.

Thanks a ton!

@thoop
Copy link
Contributor Author

thoop commented Oct 16, 2013

I updated this issue and prerender.io with Nginx. Thanks @Stanback!

@runxc1
Copy link

runxc1 commented Oct 16, 2013

Anyone started on asp.net mvc?

@thoop
Copy link
Contributor Author

thoop commented Oct 16, 2013

@runxc1 nope! I'll add it to the list above.

@greengerong
Copy link

Prerender for java framrwork[https://github.com/greengerong/prerender-java].
It use java filter to implement. How to use it , please see the demo project on this repo.

Thanks

@thoop
Copy link
Contributor Author

thoop commented Oct 16, 2013

@greengerong Nice work! I'll add it to the website and readme tonight.

@greengerong
Copy link

@thoop Thanks. Are there some one to write ASP.NET MVC client side? I think prerender is a great work. Because I like angular/ko stuff. If not one to write for ASP.NET MVC, I can write it.

@thoop
Copy link
Contributor Author

thoop commented Oct 16, 2013

@runxc1, were you going to write the ASP.NET MVC one? Or were you just requesting it?

@borisrorsvort
Copy link

Just want to signal some typo: its Yeoman and not Yeomon :)

@thoop
Copy link
Contributor Author

thoop commented Oct 21, 2013

@borisrorsvort Oops! Thanks for that.

@runxc1
Copy link

runxc1 commented Oct 21, 2013

I was more requesting it/seeing if there was one. I won't be able to get around to writing one for a few weeks.

@thoop
Copy link
Contributor Author

thoop commented Oct 21, 2013

Cool, thanks! @greengerong feel free to write an ASP .NET MVC one :)

@greengerong
Copy link

@thoop thanks, I will finish it when i am free.

@greengerong
Copy link

@thoop Prerender for asp.net mvc 4.0 https://github.com/greengerong/Prerender_asp_mvc . It almost done, I will clean some config and "read me", at next work.

Thanks

@thoop
Copy link
Contributor Author

thoop commented Oct 24, 2013

@greengerong Nice! I'll add it tonight. Thanks!

@ysimonson
Copy link
Contributor

Here's a python decorator to get prerender working on tornado: http://tornadogists.org/7120798/

We're using it in production, although there might be bugs from e.g. missing imports since I plucked out the code.

@greengerong
Copy link

@thoop Thanks

@thoop
Copy link
Contributor Author

thoop commented Oct 24, 2013

@ysimonson Awesome! I'll add that one tonight too. Thanks!

@thoop thoop mentioned this issue Dec 22, 2013
@ysimonson
Copy link
Contributor

@thoop heads-up, the tornado link goes to the wrong place

@thoop
Copy link
Contributor Author

thoop commented Jan 9, 2014

Sorry, copy/paste fail. Fixed!

Thanks for letting me know.

@ronenteva
Copy link

Any workaround for sails.js?

@thoop
Copy link
Contributor Author

thoop commented Mar 29, 2014

@think-teva check out this StackOverflow answer: http://stackoverflow.com/questions/18548850/how-to-use-custom-route-middleware-with-sails-js-expressjs

The prerender-node middleware is built for ExpressJS (which sails.js uses) so it should be very close to being compatible.

Or check out the bottom of this doc for how they set up passport in sails.js: https://github.com/balderdashy/sails-docs/blob/0.9/policies.md

@Jarlakxen
Copy link

@thoop
Copy link
Contributor Author

thoop commented Apr 17, 2014

@Jarlakxen Great! Thanks a lot. I added it to this card and I'll add it to our website and prerender repo asap.

@mahonrig
Copy link

Hello, I wrote a very simple middleware for the Slim PHP Framework ( http://www.slimframework.com ). I use pushState urls and not hash fragments, so the code for the escaped fragments could be wrong, didn't know how to check it. It correctly checks for bots using the user agent, and forwards those requests to Prerender.

repo: https://github.com/mahonrig/SlimPrerenderMiddleware

@thoop
Copy link
Contributor Author

thoop commented Apr 21, 2014

Thanks @mahonrig !

Yeah, it looks like it might not work for the hashbang. Check the source from zfr-prerender here for a great php implementation.

Let me know once you get that worked out.

@mahonrig
Copy link

@thoop Thanks for the link! I went back through, did some refactoring, added a bunch of ignored extensions (got them from your apache .htaccess). Works very well for my implementation at the least. It's still a lot simpler then the middleware for the larger frameworks, but Slim is supposed to be :)

@thoop
Copy link
Contributor Author

thoop commented Nov 17, 2014

@talss89 nice! so prerender-node works with sails.js just fine then?

@talss89
Copy link

talss89 commented Nov 17, 2014

It certainly seems that way - we've only had it set up for a couple of hours on a dev instance. Google Webmaster Tools seems happy scraping our Angular / Sails / Prerender app though!

@ronenteva
Copy link

@talss89 Thanks,
I ended up adding a config/prerender.js file:

var locals = require('./local');

module.exports = {
    http: {
        customMiddleware: function (app) {
            app.use(require('prerender-node').set('prerenderToken', locals.prerenderio.token));
        }
    }
};

@heston
Copy link

heston commented Dec 11, 2014

Has anyone seen (or created) a middleware that works with Flask?

@tampajohn
Copy link
Contributor

Thanks for the awesome work, I went ahead and created a golang middleware, feedback is welcome :).

@sylido
Copy link

sylido commented Mar 16, 2015

Could we add IIS to the list ? Should be a simple rewrite from Apache ?

@tjwebb
Copy link

tjwebb commented Mar 30, 2015

@talss89 Hey would you be interested in publishing a sails.js hook that integrates with prerender? We love to give shoutouts to community projects. Let me know, thanks.

-- sails.js team

@jrapolu
Copy link

jrapolu commented Nov 17, 2015

Has anyone seen (or created) a middleware that works with Web API & IIS?

@thoop
Copy link
Contributor Author

thoop commented Nov 20, 2015

Some people have had success using this config with IIS:

https://gist.github.com/blowsie/04c183c62a432f6450c9

@jrapolu
Copy link

jrapolu commented Dec 3, 2015

What are the steps to have own Prerender Server on Azure. My application is written in AngularJS, Web API and deployed in Azure.

@luisbox
Copy link

luisbox commented Dec 5, 2015

VERY difficult to get prerender.io working in azure. It's ridiculous. Has anyone else been able to come up with anything better other than the link @thoop provided?

@luisbox
Copy link

luisbox commented Dec 5, 2015

Okay, after trying a bunch of the code snippets with from the link @thoop originally provided, The last two comments is what worked. You should be able to do the same @jrapolu.

@jrapolu
Copy link

jrapolu commented Dec 5, 2015

Thanks @luisbox. My prerender.io working with http://service.prerender.io in Azure. But I want to have my own prerender server deployed in azure. So that I can use for my website.

@luisbox
Copy link

luisbox commented Dec 6, 2015

@jrapolu You can probably accomplish this using an Azure worker role (cloud service). I'd assume that once you set PhantomJS up within an azure worker role, you could use a similar web.config file and point to that service url, instead of prerender.io. Keep in mind that azure websites and web jobs can't run GDI+ which PhantomJS uses.

@jrapolu
Copy link

jrapolu commented Dec 9, 2015

Thanks @luisbox for the info. I have tried with Azure worker role (cloud service). But No luck. Any working sample or steps to be followed will be very helpful.

@thoop
Copy link
Contributor Author

thoop commented Dec 10, 2015

Please keep discussion on this thread to middleware implementations. Create a new issue if you'd like to discuss running the Prerender server on Azure. Thanks!

@jrapolu
Copy link

jrapolu commented Dec 10, 2015

Sure. Thank you.

Sent from my iPhone

On Dec 9, 2015, at 8:42 PM, Todd Hooper notifications@github.com wrote:

Please keep discussion on this thread to middleware implementations. Create a new issue if you'd like to discuss running the Prerender server on Azure. Thanks!


Reply to this email directly or view it on GitHub.

@emanuil-tolev
Copy link

Ruby (Sinatra) and Ruby (Padrino) would be nice. I'll try with the Apache one now as the app is already using that in front of the framework itself anyway.

@thoop
Copy link
Contributor Author

thoop commented Dec 23, 2015

@emanuil-tolev Does Sinatra or Padrino use Rack middleware? That's what our gem uses so it should be interchangeable if things are set up correctly on our end.

@sivsushruth
Copy link

If there is a demand, I can create one for Phoenix (Elixir). Let me know.

@thoop
Copy link
Contributor Author

thoop commented Feb 16, 2016

@sivsushruth Thanks! I haven't heard of any demand yet for that framework.

@vizo
Copy link

vizo commented Mar 11, 2016

@sivsushruth yes please .... 👍

@emanuil-tolev
Copy link

Does Sinatra or Padrino use Rack middleware?

Yep, it uses Rack.

That's what our gem uses so it should be interchangeable if things are set up correctly on our end.

Excellent, though we've gone for the generic Apache one for now.

@iamcz
Copy link

iamcz commented Jan 10, 2017

@sivsushruth was elixir/Phoenix support ever added?

@mostafabarmshory
Copy link

Is there a document about Prerender.io?

I want to implement a custom middle-ware for a framework but it is not easy to understand how to send request to Prerender.io.

@thoop
Copy link
Contributor Author

thoop commented Apr 20, 2017

@mostafabarmshory the Prerender service API is pretty simple. Here's a short nginx config showing the basics: https://gist.github.com/thoop/8165802

The prerender-node middleware should be pretty easy to follow through the code to see the other features we built into that middleware... like whitelisting, etc

@ggoyal2018
Copy link

Hey @thoop which middle ware work with Angular 4.

@thoop
Copy link
Contributor Author

thoop commented May 17, 2018

@ggoyal2018 all of these middleware should work perfectly with Angular 4 depending on which server you are using! Let us know if you run into any issues at support@prerender.io

@frankie567
Copy link

Hi @thoop!

First of all, thank you for Prerender! I just implemented it for our app, and it works nicely. For this, I implemented a Python middleware for Starlette/ASGI frameworks. I released it in open source, hoping it'll be of use for other developers out there: https://github.com/BeeMyDesk/prerender-python-starlette

Feel free to add it to the community middlewares list 🙂

Cheers!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests