First app
A step-by-step tutorial that will guide you through creating your first app using JavaScript WebEndpoint with PrivMX Bridge.
PrivMX Bridge
To proceed with this tutorial, you should already have your Bridge Server up and running. If not, you can find step-by-step instructions on quick start page.
Helpers
Most of the Endpoint's methods (for example creating or updating containers like Threads, Stores, etc.) require some data to be passed as a buffer. In JavaScript that buffer is represented as Uint8Array
.
A common way to serialize JS objects is to serialize them to a JSON string using JSON.stringify
. Next, in order to encode strings you can use
TextEncoder
. Because it's so common, in our examples we will use helper functions to do these conversions underneath.
Initial Assumptions
All the values below like BRIDGE_URL
, SOLUTION_ID
, CONTEXT_ID
should be replaced by the ones corresponding to your PrivMX Bridge instance.
The private keys here are for demonstration purposes only.
Normally, they should be kept separately by each user and stored in a safe place,
or generated from a password (see the derivePrivateKey()
method in the Crypto API)
The initial assumptions for all the code examples below are as follows:
Basic Serialization Example - JSON
Create Client App
First, you have to connect to your Bridge instance using Endpoint.connect
method. It requires the API keys
generated while initializing your local instance earlier.
When connected, you have access to all SDK methods. This example shows how to create a Thread, send, and download a message.
To create a Thread inside the Context, use proper methods. Note that you have to pass user ID - public key pair to make a list of users and managers.
With the Thread created, you can now send the first message.
To get a list of messages inside a Thread, use listMessages
method. Because data inside messages is in Uint8Array
you have to deserialize it to human-readable string.
Endpoint takes care of encrypting your data before sending it to PrivMX Bridge.
Next Steps
With everything ready to go, now it's time to start using all the capabilities of Endpoint and Bridge.
Learn how to use:
We use cookies on our website. We use them to ensure the proper functioning of the site and, if you agree, for purposes we set, such as analytics or marketing.