-
Notifications
You must be signed in to change notification settings - Fork 3
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
Best method to implement browser navigation #1
Comments
Could you please create a repo for PoC proposes where you place a code with those examples where they follow this steps:
|
Here is the repo Neck-PoC. I'm now programming the alert. |
We have a problem. postMessage alllows communication between windows and iframes, but need's a listener on the |
For first option,
to run chrome without web security. It's working. |
We have to make it work without that arg, since we couldn't put that argument on |
I would vote for users to setup their website CORS if they want to use Neck-Browser, and to cover all domain issues, to allow users to setup on Neck which It should be easy to play around this with DNS settings, but thats for later. |
First idea of implementation
The first idea is to create an
iframe
. Node will serve a web server with contains in home page asocket.io
client that will receive orders from thesocket.io
server + tests api.But this form of implementation have a problem. The "Same Origin" security policy, to increase security in browsers when we try to access a domain or port in an iframe not equal to the domain or port we are using on browser, doesn't allow you to access directly to the iframe.
Possible solutions
We can use other solutions, like include an
embed
orobject
tag, instead of aniframe
.@cusspvz
The text was updated successfully, but these errors were encountered: