Package Exports
- axilonauth
- axilonauth/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (axilonauth) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
AxilonAuth
License verification, version management & auto-updates for your tools
Verify · Update · Protect · One call to secure your app
Features • Quick Start • Methods
Features
- License Verification - IP/HWID tracking
- Auto Updates - Detect new versions, force-update support
- Maintenance Mode - Block your tool remotely from the dashboard
- Secure Downloads - Single-use 24h download tokens
- Zero Dependencies - Uses only Node.js built-in modules
Quick Start
# 1. Install the package
npm install axilonauthconst { AxilonClient } = require('axilonauth');
const client = new AxilonClient({
productName: 'My-Tool',
currentVersion: '1.0.0',
apiUrl: 'https://auth.axilon.app',
apiKey: 'your-api-key'
});
const result = await client.startup('ABCD-1234-EFGH-5678');
if (!result.licensed) {
console.log(result.error);
process.exit(1);
}
if (result.forceUpdate) {
await client.downloadUpdate('ABCD-1234-EFGH-5678');
process.exit(0);
}
// Your tool runs here
console.log('Licensed and ready!');Methods
client.startup(key)- Verify license + check versionclient.downloadUpdate(key)- Download latest versionclient.checkVersion()- Check for updatesclient.getHwid()- Get machine HWID