Juan Pablo Caram

Results 18 comments of Juan Pablo Caram

> create static assets and serve these with your favorite web server. Well, in my opinion, the power in Flexx is in the interaction between the front-end and back-end. There...

I would be happy to help. I have experience with web apps in general, by I'm new to websockets. I googled "tornado websockets authentication" and I found a fair amount...

How about something like this: Have an authentication app (app in the sense of Flexx apps) which would set a cookie upon successful authentication and then re-direct to the second...

This is where my lack of knowledge about websockets limits me: Would it be secure enough to check the cookie in the main app when the connection is first created...

I created a short example with the basics: https://gist.github.com/jpcaram/696df0b2357326c4fd3965ef0d90f1c2 This should help being more concrete about the things we are talking about. This example is written in pure user code,...

Any feedback? I would like to continue working on this, so some suggestions as to where to look and things to try would be useful and much appreciated.

The example that I provided earlier is safe as long as you understand the limitations of it. Some we have already discussed in this thread. I'm still working on this...

@almarklein , do you mind if we discuss @matkuki 's specific issue here, even though the original purpose of this thread was for the development of the authentication features? @matkuki...

@almarklein , before submitting any pull requests I wanted to discuss my approach. I think that we need to call a method in the app before we call init(). For...

@almarklein It would be a method of `Component`, which if I'm understanding correctly it what gets wrapped with `App`, right? So, the usage pattern would be: ```python class MyApp(PyComponent): def...