connected-spaces-platform.web 6.10.0 → 6.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Debug/ConnectedSpacesPlatform_WASM.js +88 -4
- package/Debug/ConnectedSpacesPlatform_WASM.wasm +0 -0
- package/Debug/ConnectedSpacesPlatform_WASM.wasm.debug.wasm +0 -0
- package/README.md +74 -2
- package/Release/ConnectedSpacesPlatform_WASM.js +1 -1
- package/Release/ConnectedSpacesPlatform_WASM.wasm +0 -0
- package/connectedspacesplatform.d.ts +140 -5
- package/connectedspacesplatform.js +341 -5
- package/connectedspacesplatform.js.map +1 -1
- package/connectedspacesplatform.ts +661 -3
- package/package.json +1 -1
|
Binary file
|
|
Binary file
|
package/README.md
CHANGED
|
@@ -1,2 +1,74 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
# Connected Spaces Platform
|
|
2
|
+
|
|
3
|
+
<p align="center">
|
|
4
|
+
<img src="https://github.com/user-attachments/assets/b40be23d-4d07-42bd-b3cb-652f261cf20b">
|
|
5
|
+
</p>
|
|
6
|
+
|
|
7
|
+
## An interoperable communication library for the spatial internet
|
|
8
|
+
|
|
9
|
+
⚡️ Current Supported Languages : C++, C#, WebAssembly
|
|
10
|
+
|
|
11
|
+
🖥️ Current Supported Platforms : Windows, Android, iOS, VisionOS and MacOS
|
|
12
|
+
|
|
13
|
+
📜 See the [Changelog](https://github.com/magnopus-opensource/connected-spaces-platform/blob/main/.github/CHANGELOG.md) for details of notable changes for each release.
|
|
14
|
+
|
|
15
|
+
💾 In November 2025 we migrated to continuous nightly deployments. Please see the [releases](https://github.com/magnopus-opensource/connected-spaces-platform/releases) section of the `connected-spaces-platform` repo for changelogs associated with earlier releases.
|
|
16
|
+
|
|
17
|
+
Interoperability is the foundation of the spatial internet. We need experiences to work across multiple technologies in harmony, bridging applications and devices so that we can move beyond a series of disconnected islands.
|
|
18
|
+
|
|
19
|
+
<p align="center">
|
|
20
|
+
<img src="https://github.com/magnopus-opensource/connected-spaces-platform/assets/99482500/65fa6a8f-f9a4-45d7-9bd4-731d505c7711">
|
|
21
|
+
</p>
|
|
22
|
+
|
|
23
|
+
The Connected Spaces Platform provides developers across a range of languages and platforms with a means to build _interoperable, cross-reality, multi-user applications_.
|
|
24
|
+
|
|
25
|
+
It comes in the form of an open-source client-side library, effectively encoding (in binary form) the standards by which applications can interoperably communicate with one another. Standards that we can all contribute to.
|
|
26
|
+
|
|
27
|
+
## 📖 Learn
|
|
28
|
+
|
|
29
|
+
The official documentation for CSP can be found [here](https://connected-spaces-platform.net/index.html).
|
|
30
|
+
|
|
31
|
+
- The [Learn](https://connected-spaces-platform.net/learn/learn.html) section includes a range of modules that explain topics ranging from the basic tenets of CSP through to more advanced usage.
|
|
32
|
+
|
|
33
|
+
- The [Manual](https://connected-spaces-platform.net/manual/manual.html) covers quick start guides, tutorials, plus how to build and debug CSP locally.
|
|
34
|
+
|
|
35
|
+
- The [API Documentation](https://connected-spaces-platform.net/api/library_root.html) covers the API itself (this documentation can also be found inline in the CSP public API source).
|
|
36
|
+
|
|
37
|
+
## 📦 Install
|
|
38
|
+
|
|
39
|
+
NPM packages are available for Web and Unity and can be found on npmjs.
|
|
40
|
+
|
|
41
|
+
- Web: https://www.npmjs.com/package/connected-spaces-platform.web
|
|
42
|
+
|
|
43
|
+
- Unity: https://www.npmjs.com/package/connected-spaces-platform.unity.core
|
|
44
|
+
|
|
45
|
+
For C++ based applications, you can find headers and precompiled binaries for all platforms in [Releases](https://github.com/magnopus-opensource/connected-spaces-platform/releases).
|
|
46
|
+
|
|
47
|
+
## 🔑 Tenant IDs
|
|
48
|
+
|
|
49
|
+
If you choose to use the Connected Spaces Platform in conjunction with Magnopus Cloud Services, you'll need a Tenant ID.
|
|
50
|
+
|
|
51
|
+
Use this [form](https://ogs.magnopus-stg.cloud/mag-user/tenants/CreateTenant) to create a tenant in our staging environment.
|
|
52
|
+
|
|
53
|
+
If you are ready to use CSP in a live product, [reach out](https://www.magnopus.com/contact) to us to obtain a tenant in our production environment.
|
|
54
|
+
|
|
55
|
+
For more information about tenants and tenant IDs, visit our [FAQ](https://www.magnopus.com/csp/faqs#tenant-IDs-faqs).
|
|
56
|
+
|
|
57
|
+
## 🔨 Build Instructions
|
|
58
|
+
|
|
59
|
+
CSP build instructions for each supported language are below.
|
|
60
|
+
|
|
61
|
+
- [Building for Web](https://connected-spaces-platform.net/manual/building/web.html)
|
|
62
|
+
- [Building for Windows](https://connected-spaces-platform.net/manual/building/windows.html)
|
|
63
|
+
- [Building for C#](https://connected-spaces-platform.net/manual/building/csharp.html)
|
|
64
|
+
- [Building for Android](https://connected-spaces-platform.net/manual/building/android.html)
|
|
65
|
+
- [Building for MacOS](https://connected-spaces-platform.net/manual/building/macos.html)
|
|
66
|
+
- [Building for IOS](https://connected-spaces-platform.net/manual/building/ios.html)
|
|
67
|
+
|
|
68
|
+
## 👷♂️ Contributions
|
|
69
|
+
|
|
70
|
+
PRs are welcome! If have any ideas you would like to contribute please see our [contribution](/.github/CONTRIBUTING.md) page.
|
|
71
|
+
|
|
72
|
+
## ©️ License
|
|
73
|
+
|
|
74
|
+
[Apache-2.0](https://github.com/magnopus-opensource/connected-spaces-platform/blob/main/LICENSE)
|