Initialize the SDK
As regards the code, the only difference between the Standalone version and Vexor Cloud is the way you initialize the SDK, you'll see that below.
If you need to know more about the differences as regards the product itself, you can read the differences page.
Installation
Vexor can be installed in any Node.js-based project. To install Vexor, simply run one of the following commands in your project directory:
or
This will install the core Vexor package, which can be used with any Node.js-based framework or library.
Static Initialization
There are 3 ways to instantiate a Vexor instance:
- Using the
new Vexor()
constructor with publishable key, project id and secret key. -
Using the
Vexor.init()
static method. - Using the
Vexor.fromEnv()
only available in Vexor Cloud version.
StaticVexor.init(params) | new Vexor(params)
Returns
These methods return a new Vexor instance. Choose the method that best fits your application's architecture/conventions.
Recommendations
- Create a
.env
file in your project root and add your Vexor environment variables:
WARNING: Do not store any secrets in your client-side code! These keys should be handled on the server side.
- Create a
vexor.ts
file in yourlib
orutils
folder and export the Vexor instance:
Choose the method that best fits your application's architecture and security requirements.
The Vexor.init()
method is functionally equivalent to using the new Vexor()
constructor. It's provided as an alternative syntax that some developers may find more intuitive or easier to use in certain contexts.
Next Steps
Follow the guides to start integrating Vexor into your project.