├── LICENSE
└── README.md
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2022 mhttp-org
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
Web SDK for MHTTP
2 |
3 | 
4 |
5 | A web framework for building and using teleportation portals
6 |
7 |
8 |
9 |
22 |
23 | # portal-js
24 | JavaScript client library for MHTTP
25 |
26 | ## Introduction to MHTTP
27 | 
28 |
29 | In the Metaverse, ensuring user rights to teleportation is fundamental to breaking down walled gardens and safeguarding an open and connected ecosystem.
30 |
31 | MHTTP is an open standard for teleportation across the Metaverse. The protocol enables developers to create portals using an open JSON schema, and empowers users to teleport through these portals to destinations.
32 |
33 | While many different technologies exist as partial solutions, the world lacks a single technology that provides a coherent standard for metaverse teleportation. MHTTP builds upon existing technologies like HTTP, OAuth and JSON to provide developers an easy way to create portals and users a seamless way to teleport. Both developer simplicity and user accessibility are therefore key design goals.
34 |
35 | ## About Portal.js
36 | Portal.js is a JavaScript client library for MHTTP for Web VR/AR/XR and Web developers. Once this library is included in web-based metaverse environments, developers will be able to create portals using an open JSON schema, which will be published alongside Portal.js.
37 |
38 | ## Stayed Tuned - Release Date in early Q3, 2022
39 | We have started an early reference implementation of MHTTP on GitHub as an open-source project under MIT license. We plan for an initial release in early Q3, 2022. Join our movement today - your contribution in usage, code, ideas or feedback is highly instrumental towards realizing an open and connected Metaverse together.
40 |
41 | ## Early Technical Inspirations for Teleportation
42 | - [HTTP](https://www.w3.org/Protocols/Specs.html) - the Web's most important protocol for navigating from one site to another that made the Web what it is today
43 | - [Time Sharing of Computers and Context Switching](https://archive.org/details/large-fast-computers) - Christopher Strachey's original 1959 paper on how multiple applications can run on one computer at the same time and how to context switch between applications
44 | - [Reminiscences on the Theory of Time-Sharing](http://jmc.stanford.edu/computing-science/timesharing.html) - John McCarthy reflects on Strachey's work and his own work on time-sharing
45 | - [OAuth](https://datatracker.ietf.org/doc/html/rfc6749) - the de facto industry standard protocol for authorization and access delegation
46 |
47 | ## Cultural References in Teleportation
48 | - [William Shakespeare's 'The Tempest'](http://shakespeare.mit.edu/tempest/full.html) - Ariel is a spirit in Shakespeare's 'The Tempest' (1610 - 1611), capable of weather control and teleportation
49 |
50 |
51 |
52 | - [Goku](https://dragonball.fandom.com/wiki/Instant_Transmission) - Goku in Dragon Ball calls his teleportation technique しゅんかんいどう (Japanese for "instant transmission")
53 |
54 |
55 | (Source: flickr @zaffi)
56 |
57 | - [Transformers Teleporters](https://tfwiki.net/wiki/Skywarp_(G1)) - Skywarp is a Transformer endowed with the skills of teleportation
58 |
59 | - [Marvel Teleporters](https://www.cbr.com/marvel-comics-best-teleporters/) - some of the major Marvel comic characters who can teleport
60 |
61 |
62 |
63 |
64 |
89 |
--------------------------------------------------------------------------------