rck-engine
v1.0.2
Published
SDK for RCK Engine
Maintainers
Readme
RCK Engine SDK (rck-engine)
The official JavaScript SDK for interacting with the RCK Engine. Secure, fast, and easy to integrate into any Node.js or browser project.
Installation
npm install rck-engineQuick Start (Functional API)
The RCK SDK provides a modern, functional interface similar to Claude or OpenAI.
import { configure, analyse, plugins } from 'rck-engine';
// 1. Configure the SDK
configure({
apiKey: 'your_rck_live_key'
});
// 2. List available validation engines
const { plugins: engines } = await plugins();
console.log('Available Engines:', engines);
// 3. Run a deep analysis
const result = await analyse('aec-integrity-v1', {
file: myFileObject, // standard File or Blob
options: { sensitivity: 'high' }
});
console.log('Analysis Result:', result.integrity_score);Key Features
- Blazing Fast: Optimized for 127.0.0.1 for zero-latency local development.
- Functional: Call functions directly without class initialization.
- Secure: Built-in support for API key authentication and secure FormData handling.
- Obfuscated: Sensitive connection logic is protected for production use.
Documentation
For full API reference and connection guides, visit the RCK Developer Portal.
License
ISC © RCK Team
