After you've added a product for your app in the admin portal, you will need to do the following things:
- Note the product id for the product (from the actions menu in the table).
- Download the Product.dat for the product (from the actions menu in the table).
- Download the example project from Github.
Product.dat contains product data that is used by LexActivator. The product id is the identifier of your product that is to be used in the code.
{% hint style="info" %} In order to package your Node.js project into an executable, check out pkg project. {% endhint %}
LexActivator wrapper for Node.js can be easily installed through npm:
npm i @cryptlex/lexactivator
LexActivator has a dependency on VS2015
runtime on Windows. On the target machines where you will deploy your app, you can install the VS2015
runtime, if not present, using the link: https://www.microsoft.com/en-in/download/details.aspx?id=48145
The first thing you need to do is either embed the Product.dat file in your app using SetProductData()
function or set the absolute path of the file using SetProductFile()
function.
The next thing you need to do is to set the product id of your application in your code using SetProductId()
function. It sets the id of the product you will be adding licensing to.
LexActivator.SetProductData("PASTE_CONTENT_OF_PRODUCT.DAT_FILE");
LexActivator.SetProductId("PASTE_PRODUCT_ID", PermissionFlags.LA_USER);
If your app requires admin (root) privileges to run (e.g. services, daemons etc.), instead of passing PermissionFlags.LA_USER
flag, you need to pass PermissionFlags.LA_SYSTEM
flag.
If your app requires a single activation to be shared across all OS users (system-wide activation), pass the PermissionFlags.LA_ALL_USERS
flag before activation. This flag is compatible with Windows OS only.
{% hint style="info" %}
In case your app doesn't have write access to the disk, you can use PermissionFlags.LA_IN_MEMORY
flag instead, which causes all the data to be stored in the memory. But this would require you to activate the license every time you restart the app.
{% endhint %}
To activate the license in your app using the license key, you will use ActivateLicense()
LexActivator API function. It invokes the /v3/activations
Cryptlex Web API endpoint, verifies the encrypted and digitally signed response to validate the license.
function activate() {
try {
LexActivator.SetLicenseKey('PASTE_LICENCE_KEY');
LexActivator.SetActivationMetadata('key1', 'value1');
const status = LexActivator.ActivateLicense();
if (LexStatusCodes.LA_OK == status) {
console.log('License activated successfully!');
} else if (LexStatusCodes.LA_EXPIRED == status) {
console.log('License activated successfully but has expired!');
} else if (LexStatusCodes.LA_SUSPENDED == status) {
console.log('License activated successfully but has been suspended!');
}
} catch(error) {
console.log('License activated failed:', error.code, error.message);
}
}
The above code should be executed at the time of license activation.
Each time, your app starts, you need to verify whether your license is already activated or not. This verification should occur locally by verifying the cryptographic digital signature of activation. Ideally, it should also asynchronously contact Cryptlex servers to validate and sync the license activation periodically. For this you need to use IsLicenseGenuine()
LexActivator API function.
function main() {
try {
LexActivator.SetProductData('PASTE_CONTENT_OF_PRODUCT.DAT_FILE');
LexActivator.SetProductId('PASTE_PRODUCT_ID', PermissionFlags.LA_USER);
LexActivator.SetAppVersion('PASTE_YOUR_APP_VERION');
const status = LexActivator.IsLicenseGenuine();
if (LexStatusCodes.LA_OK == status) {
console.log("License is genuinely activated!");
} else if (LexStatusCodes.LA_EXPIRED == status) {
console.log("License is genuinely activated but has expired!");
} else if (LexStatusCodes.LA_SUSPENDED == status) {
console.log("License is genuinely activated but has been suspended!");
} else if (LexStatusCodes.LA_GRACE_PERIOD_OVER == status) {
console.log("License is genuinely activated but grace period is over!");
} else {
console.log("License is not activated:", status);
}
} catch (error) {
console.log('Error:', error.code, error.message);
}
}
The above code should be executed every time user starts the app. After verifying locally, it schedules a periodic server check in a separate thread.
In case you need more help for adding LexActivator to your app, we'll be glad to help you make the integration. You can either post your questions on our support forum or can contact us through email.