2.5.3 ⢠Published 10 months ago
authvault v2.5.3
AuthVault JS š
The #1 Trusted Authentication System for handling HWID locks, timed license keys, and secure software authentication.
š Features
- š HWID-Based Authentication: Securely bind licenses to hardware.
- ā³ Timed License Keys: Control access with keys that expire after a set period.
- āļø Easy Integration: Effortlessly integrate with your JavaScript projects.
- š Detailed Reporting: Monitor and manage keys and HWID data.
- š”ļø Secure & Trusted: Trusted by thousands for its reliability and security.
š§ Installation
Install AuthVault JS using npm
:
npm install authvault-js```
š Quick Start
const AuthVault = require('authvault');
const authInstance = new AuthVault(); const APPLICATION_ID = 'your-app-id'; const SECRET = 'your-secret';
(async () => { const licenseKey = 'your-license-key'; await authInstance.authvault(licenseKey, APPLICATION_ID, SECRET);
if (authInstance.getAuthStatus()) {
console.log('The license key is valid.');
} else {
console.log('The license key is invalid.');
}
})();
š Documentation
For full documentation, check out AuthVault Docs.
š¤ Contributing
We welcome contributions! Feel free to open a pull request or submit issues.