Create a license for your product. In this example, we will create a license that never expires and can only have 1 device active at the same time. The license key will be logged to the console, copy it.
import { Keyforge } from 'keyforge-js';const keyforge = new Keyforge('sk_1234');const license = await keyforge.licenses.create({ productId: 'YOUR_PRODUCT_ID', type: 'perpetual', maxDevices: 1,});console.log(license.key);
Activate the license you have just created. Replace LICENSE_KEY with the license key you copied in the previous step. In this example, we will activate the license on a device with the identifier some_device_id and the name My computer name.
Validate the license you have just activated. Replace LICENSE_KEY with the license key, and YOUR_PRODUCT_ID with the product ID. In this example, we will validate the license on the device with the identifier some_device_id and see if it's valid.
Keyforge also provides a public REST API that you can use directly in your apps without the need to create a backend. An API key is not needed to use the public API.