relayx-webjs 1.0.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/CHANGELOG.md +6 -0
- package/LICENSE +201 -0
- package/README.md +186 -0
- package/example/README.md +82 -0
- package/example/chat-app/index.html +13 -0
- package/example/chat-app/package-lock.json +3105 -0
- package/example/chat-app/package.json +24 -0
- package/example/chat-app/postcss.config.js +6 -0
- package/example/chat-app/src/App.jsx +193 -0
- package/example/chat-app/src/components/ui/button.jsx +16 -0
- package/example/chat-app/src/components/ui/card.jsx +9 -0
- package/example/chat-app/src/components/ui/input.jsx +11 -0
- package/example/chat-app/src/index.css +3 -0
- package/example/chat-app/src/main.jsx +10 -0
- package/example/chat-app/tailwind.config.js +8 -0
- package/example/chat-app/vite.config.js +12 -0
- package/example/screenshots/screen_1.png +0 -0
- package/example/screenshots/screen_2.png +0 -0
- package/example/screenshots/screen_3.png +0 -0
- package/package.json +34 -0
- package/realtime/realtime.js +936 -0
- package/tests/load.js +101 -0
- package/tests/test.js +514 -0
package/CHANGELOG.md
ADDED
package/LICENSE
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright 2025 TerraOrbital
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
package/README.md
ADDED
|
@@ -0,0 +1,186 @@
|
|
|
1
|
+
# Relay JS Library for the Web
|
|
2
|
+
<br>
|
|
3
|
+
A powerful library for integrating real-time communication into your web app, powered by the Relay Network.
|
|
4
|
+
|
|
5
|
+
## Features
|
|
6
|
+
1. Real-time communication made easy—connect, publish, and subscribe with minimal effort.
|
|
7
|
+
2. Automatic reconnection built-in, with a 2-minute retry window for network disruptions.
|
|
8
|
+
3. Message persistence during reconnection ensures no data loss when the client reconnects.
|
|
9
|
+
|
|
10
|
+
## Installation
|
|
11
|
+
Install the relay library by running the command below in your terminal<br>
|
|
12
|
+
`npm install relayx-webjs`
|
|
13
|
+
|
|
14
|
+
## Usage
|
|
15
|
+
### Prerequisites
|
|
16
|
+
1. Obtain API key and Secret key
|
|
17
|
+
2. Initialize the library
|
|
18
|
+
```javascript
|
|
19
|
+
import { Realtime, CONNECTED, RECONNECT, DISCONNECTED } from "relayx-webjs"
|
|
20
|
+
|
|
21
|
+
var realtime = new Realtime({
|
|
22
|
+
api_key: process.env.api_key,
|
|
23
|
+
secret: process.env.secret,
|
|
24
|
+
});
|
|
25
|
+
realtime.init();
|
|
26
|
+
|
|
27
|
+
// Initialization of topic listeners go here... (look at examples/example_chat.js for full implementation)
|
|
28
|
+
|
|
29
|
+
realtime.connect();
|
|
30
|
+
|
|
31
|
+
// Other application logic...
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
### Usage
|
|
35
|
+
1. <b>Publish</b><br>
|
|
36
|
+
Send a message to a topic:<br>
|
|
37
|
+
```javascript
|
|
38
|
+
var sent = await realtime.publish("power_telemetry", {
|
|
39
|
+
"voltage_V": 5,
|
|
40
|
+
"current_mA": 400,
|
|
41
|
+
"power_W": 2
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
if(sent){
|
|
45
|
+
console.log("Message was successfully sent to topic => power_telemetry");
|
|
46
|
+
}else{
|
|
47
|
+
console.log("Message was not sent to topic => power_telemetry");
|
|
48
|
+
}
|
|
49
|
+
```
|
|
50
|
+
2. <b>Listen</b><br>
|
|
51
|
+
Subscribe to a topic to receive messages:<br>
|
|
52
|
+
```javascript
|
|
53
|
+
await realtime.on("power_telemetry", (data) => {
|
|
54
|
+
console.log(data);
|
|
55
|
+
});
|
|
56
|
+
```
|
|
57
|
+
3. <b>Turn Off Listener</b><br>
|
|
58
|
+
Unsubscribe from a topic:<br>
|
|
59
|
+
```javascript
|
|
60
|
+
var unsubscribed = await realtime.off("power_telemetry");
|
|
61
|
+
|
|
62
|
+
if(unsubscribed){
|
|
63
|
+
console.log("Successfully unsubscribed from power_telemetry");
|
|
64
|
+
}else{
|
|
65
|
+
console.log("Unable to unsubscribe from power_telemetry");
|
|
66
|
+
}
|
|
67
|
+
```
|
|
68
|
+
4. <b>History</b><br>
|
|
69
|
+
Get previously published messages between a start date and end date. Dates are in UTC.
|
|
70
|
+
```javascript
|
|
71
|
+
var start = new Date();
|
|
72
|
+
var past = start.setDate(start.getDate() - 4) // Get start date from 4 days ago
|
|
73
|
+
var startDate = new Date(past)
|
|
74
|
+
|
|
75
|
+
var end = new Date();
|
|
76
|
+
var past = end.setDate(end.getDate() - 2) // Get end date from 2 days ago
|
|
77
|
+
var endDate = new Date(past)
|
|
78
|
+
|
|
79
|
+
var history = await realtime.history(topic, startDate, endDate)
|
|
80
|
+
```
|
|
81
|
+
The end date is optional. Supplying only the start time will fetch all messages from the start time to now.
|
|
82
|
+
```javascript
|
|
83
|
+
var start = new Date();
|
|
84
|
+
var past = start.setDate(start.getDate() - 4) // Get start date from 4 days ago
|
|
85
|
+
var startDate = new Date(past)
|
|
86
|
+
|
|
87
|
+
// This will get all messages from 4 days ago to now
|
|
88
|
+
var history = await realtime.history(topic, startDate)
|
|
89
|
+
```
|
|
90
|
+
5. <b>Valid Topic Check</b><br>
|
|
91
|
+
Utility function to check if a particular topic is valid
|
|
92
|
+
```javascript
|
|
93
|
+
var isValid = realtime.isTopicValid("topic");
|
|
94
|
+
|
|
95
|
+
console.log(`Topic Valid => ${isValid}`);
|
|
96
|
+
```
|
|
97
|
+
6. <b>Sleep</b><br>
|
|
98
|
+
Utility async function to delay code execution
|
|
99
|
+
```javascript
|
|
100
|
+
console.log("Starting code execution...");
|
|
101
|
+
await realtime.sleep(2000) // arg is in ms
|
|
102
|
+
console.log("This line executed after 2 seconds");
|
|
103
|
+
```
|
|
104
|
+
7. <b>Close Connection to Relay</b><br>
|
|
105
|
+
Manually disconnect from the Relay Network
|
|
106
|
+
```javascript
|
|
107
|
+
// Logic here
|
|
108
|
+
|
|
109
|
+
realtime.close();
|
|
110
|
+
```
|
|
111
|
+
|
|
112
|
+
## System Events
|
|
113
|
+
1. <b>CONNECTED</b><br>
|
|
114
|
+
This event is fired when the library connects to the Relay Network.
|
|
115
|
+
```javascript
|
|
116
|
+
await realtime.on(CONNECTED, () => {
|
|
117
|
+
console.log("Connected to the Relay Network!");
|
|
118
|
+
});
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
2. <b>RECONNECT</b><br>
|
|
122
|
+
This event is fired when the library reconnects to the Relay Network. This is only fired when the disconnection event is not manual, i.e, disconnection due to network issues.
|
|
123
|
+
```javascript
|
|
124
|
+
await realtime.on(RECONNECT, (status) => {
|
|
125
|
+
console.log(`Reconnected! => ${status}`);
|
|
126
|
+
});
|
|
127
|
+
```
|
|
128
|
+
`status` can have values of `RECONNECTING` & `RECONNECTED`.
|
|
129
|
+
|
|
130
|
+
`RECONNECTING` => Reconnection attempts have begun. If `status == RECONNECTING`, the `RECONNECT` event is fired every 1 second.<br>
|
|
131
|
+
`RECONNECTED` => Reconnected to the Relay Network.
|
|
132
|
+
3. <b>DISCONNECTED</b><br>
|
|
133
|
+
This event is fired when the library disconnects from the Relay Network. This includes disconnection due to network issues as well.
|
|
134
|
+
```javascript
|
|
135
|
+
await realtime.on(DISCONNECTED, () => {
|
|
136
|
+
console.log("Disconnected from the Relay Network");
|
|
137
|
+
});
|
|
138
|
+
```
|
|
139
|
+
4. <b>MESSAGE_RESEND</b><br>
|
|
140
|
+
This event is fired when the library resends the messages upon reconnection to the Relay Network.
|
|
141
|
+
```javascript
|
|
142
|
+
await realtime.on(MESSAGE_RESEND, (messages) => {
|
|
143
|
+
console.log("Offline messages may have been resent");
|
|
144
|
+
console.log("Messages");
|
|
145
|
+
console.log(messages);
|
|
146
|
+
});
|
|
147
|
+
```
|
|
148
|
+
`messages` is an array of the following object,<br>
|
|
149
|
+
```json
|
|
150
|
+
{
|
|
151
|
+
"topic": "<topic the message belongs to>",
|
|
152
|
+
"message": "<message you sent>",
|
|
153
|
+
"resent": "<boolean, indicating if the message was sent successully>"
|
|
154
|
+
}
|
|
155
|
+
```
|
|
156
|
+
|
|
157
|
+
## API Reference
|
|
158
|
+
1. init()<br>
|
|
159
|
+
Initializes library with configuration options.
|
|
160
|
+
* debug (boolean): enables library level logging
|
|
161
|
+
2. connect()<br>
|
|
162
|
+
Connects the library to the Relay Network. This is an async function.
|
|
163
|
+
3. close()<br>
|
|
164
|
+
Disconnects the library from the Relay Network.
|
|
165
|
+
3. on()<br>
|
|
166
|
+
Subscribes to a topic. This is an async function.
|
|
167
|
+
* @param {string} topic - Name of the event
|
|
168
|
+
* @param {function} func - Callback function to call on user thread
|
|
169
|
+
* @returns {boolean} - To check if topic subscription was successful
|
|
170
|
+
3. off()<br>
|
|
171
|
+
Deletes reference to user defined event callback for a topic. This will stop listening to a topic. This is an async function.
|
|
172
|
+
* @param {string} topic
|
|
173
|
+
* @returns {boolean} - To check if topic unsubscribe was successful
|
|
174
|
+
4. history()<br>
|
|
175
|
+
Get a list of messages published in the past. This is an async function.<br>
|
|
176
|
+
A list of messages can be obtained using a start time and end time. End time is optional. If end time is not specified, all messages from the start time to now is returned.
|
|
177
|
+
* @param {string} topic
|
|
178
|
+
* @param {Date} start
|
|
179
|
+
* @param {Date} end
|
|
180
|
+
* @returns {JSON Array} - List of messages published in the past
|
|
181
|
+
5. isTopicValid()<br>
|
|
182
|
+
Checks if a topic can be used to send messages to.
|
|
183
|
+
* @param {string} topic - Name of event
|
|
184
|
+
* @returns {boolean} - If topic is valid or not
|
|
185
|
+
6. sleep()<br>
|
|
186
|
+
Pauses code execution for a user defined time. Time passed into the method is in milliseconds. This is an async function.
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
# Relay Chat Demo
|
|
2
|
+
|
|
3
|
+
A minimal React + Relay SDK example that lets you join a chat room and exchange messages in real‑time. The project is built with **Vite**, **React 18**, **TailwindCSS** and the Relay SDK.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## 1 Prerequisites
|
|
8
|
+
|
|
9
|
+
* **Node.js ≥ 18** — required only for the local dev tooling (Vite/React build). **Your end‑users do *****not***** need Node**; the compiled site runs entirely in the browser.
|
|
10
|
+
* A **Relay** account with:
|
|
11
|
+
|
|
12
|
+
* **API Key**
|
|
13
|
+
* **Secret Key**
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
## 2 Clone & set your keys
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
# 1. Grab the repo (or unzip the archive you downloaded)
|
|
21
|
+
$ git clone https://github.com/Realtime-Relay/relayx-webjs.git
|
|
22
|
+
$ cd examples/chat-app
|
|
23
|
+
|
|
24
|
+
# 2. Export your Relay credentials *in the same shell session*:
|
|
25
|
+
# (On Windows PowerShell use $Env: instead of export)
|
|
26
|
+
$ export VITE_API_KEY="pk_live_yourKeyHere"
|
|
27
|
+
$ export VITE_SECRET="sk_live_yourSecretHere"
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
> **Tip :** You can also create a `.env.local` (git‑ignored) and drop the two variables there:
|
|
31
|
+
>
|
|
32
|
+
> ```text
|
|
33
|
+
> VITE_API_KEY=pk_live_yourKeyHere
|
|
34
|
+
> VITE_SECRET=sk_live_yourSecretHere
|
|
35
|
+
> ```
|
|
36
|
+
|
|
37
|
+
---
|
|
38
|
+
|
|
39
|
+
## 3 Install packages
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
npm install # or yarn / pnpm install
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
---
|
|
46
|
+
|
|
47
|
+
## 4 Run the dev server
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
npm run dev # Vite will serve http://localhost:5173
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
To create an optimised production build:
|
|
54
|
+
|
|
55
|
+
```bash
|
|
56
|
+
npm run build # output in /dist
|
|
57
|
+
npm run preview # serve the built bundle locally
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
---
|
|
61
|
+
|
|
62
|
+
## 5 Using the app (walk‑through)
|
|
63
|
+
|
|
64
|
+
All screenshots live in `./screenshots`.
|
|
65
|
+
|
|
66
|
+
| Step | Action | Screenshot |
|
|
67
|
+
| ---- | -------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------- |
|
|
68
|
+
| 1 | **Landing page.** Enter a room name (e.g. `userinfo`) and click **Join**. |  |
|
|
69
|
+
| 2 | **Chat view (empty).** The header shows the room and connection status. When the **Connected** badge turns green you can type. |  |
|
|
70
|
+
| 3 | **Exchange messages.** Open another tab/browser, join the same room, and start chatting—messages appear instantly thanks to Relay’s pub‑sub. |  |
|
|
71
|
+
|
|
72
|
+
---
|
|
73
|
+
|
|
74
|
+
## 6 Troubleshooting
|
|
75
|
+
|
|
76
|
+
| Problem | Fix |
|
|
77
|
+
| ------------------------------- | ---------------------------------------------------------------------- |
|
|
78
|
+
| **White screen / build errors** | Make sure Node ≥ 18 and you ran `npm install`. |
|
|
79
|
+
| **“Not authorised” messages** | Double‑check `VITE_API_KEY` / `VITE_SECRET`. |
|
|
80
|
+
| **Connection shows Offline** | Browser can’t reach Relay cluster—check network/firewall or try again. |
|
|
81
|
+
|
|
82
|
+
---
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
|
+
<title>Relay Chat Demo</title>
|
|
8
|
+
</head>
|
|
9
|
+
<body class="min-h-screen">
|
|
10
|
+
<div id="root"></div>
|
|
11
|
+
<script type="module" src="/src/main.jsx"></script>
|
|
12
|
+
</body>
|
|
13
|
+
</html>
|