Sdk IntegrationsJavaScript SDK
Getting started
Install the Cipherion JavaScript SDK
Installation
Install the Cipherion SDK using your preferred package manager.
npm install @cipherion/clientyarn add @cipherion/clientpnpm add @cipherion/clientVerify Installation
Create a test file to verify the installation:
import { CipherionClient } from '@cipherion/client';
console.log('Cipherion SDK installed successfully!');Run the file:
npx ts-node test-installation.ts
# or
node test-installation.jsTypeScript Configuration
If using TypeScript, ensure your tsconfig.json includes:
{
"compilerOptions": {
"target": "ES2020",
"module": "commonjs",
"lib": ["ES2020"],
"esModuleInterop": true,
"skipLibCheck": true,
"strict": true
}
}