egthisas.com

SDK Installation Guide

Install and configure the egthisas.com SDK in your development environment using our privacy-first tools.

⚙️ Prerequisites

  • Node.js v16.0+
  • npm or yarn package manager
  • Modern code editor (VSCode recommended)

📦 Install SDK

Add egthisas.com SDK to your project using npm or yarn:

npm install @egthisas/secure-sdk



yarn add @egthisas/secure-sdk
                        

⚙️ Configuration

Basic Configuration

import { SecureClient } from '@egthisas/secure-sdk';

const client = new SecureClient({
  encryptionKey: 'your-256bit-api-key',
  endpoint: 'https://api.egthisas.com/v1'
});
                        

Secure Options

  • End-to-end encryption by default
  • Tokenized session management
  • Privacy-preserving analytics

✅ Verify Installation

Test your installation with a quick health check:

client.verifyInstallation().then(result => {
  if (result.status === 'healthy') {
    console.log('✅ SDK Ready');
  } else {
    console.warn('⚠️', result.details);
  }
});
                    

Successful result includes:

  • Active encryption module
  • Connected to secure API
  • Valid access token

🚀 Next Steps