authvault
v2.5.3
Published
The #1 Trusted Authentication System for JavaScript.
Readme
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 Startconst 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.