JSPM

axilonauth

1.0.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 202
  • Score
    100M100P100Q0F
  • License MIT

AxilonAuth - License verification, version management & auto-updates

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

FeaturesQuick StartMethods


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 axilonauth
const { 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 version
  • client.downloadUpdate(key) - Download latest version
  • client.checkVersion() - Check for updates
  • client.getHwid() - Get machine HWID