-
Notifications
You must be signed in to change notification settings - Fork 0
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
Diary - EPA-WG updates, thoughts & discoveries #1
Comments
Embeddable applications got traction on native level: |
While the |
The integration of EPA requires the messaging between container and embedded app. Current options are:
Could |
App data sharing scopeBrowsers have given storage API for data key/value preservation. Which also could be used for cross-application communication as during applying the data in start time as in run time via 'storage' event notification. Secure communication assumes the data and events will be available only between approved by host page applications. I assume the data format compatibility would be guaranteed only between same application (meaning same location.host and location.pathname of Between domains the data in general are not meant to be shared. Meaning better to be insulated in own jailed environment as for data corruption protection as for security reasons. Unless the host page decides to permit the data sharing. In |
Thinking how to fit window.open and window.postMessage API into microapplication concept. Perhaps Clippy is a good sample of such use. But definitely is not that typical. In Windows each app could have commands with parameters. Like "open $file", "print", etc. But here is a trouble. postMessage API assumes communication only between child-parent windows. Since the random access to microapplications on page is a security issue, only permitted by host app . |
The Chrome team has released an intent to implement on a form of HTML modules: https://groups.google.com/a/chromium.org/forum/#!msg/blink-dev/ewfRSdqcOd8/w_Fr6rJ3DQAJ It is not a microaplication capable thought. But a good step in right direction. |
Check this out: In light of Google partnering with StackBlitz https://blog.stackblitz.com/posts/introducing-webcontainers/
|
No description provided.
The text was updated successfully, but these errors were encountered: