Cipherion
Sdk IntegrationsJavaScript SDK

Getting started

Install the Cipherion JavaScript SDK

Installation

Install the Cipherion SDK using your preferred package manager.

npm install @cipherion/client
yarn add @cipherion/client
pnpm add @cipherion/client

Verify Installation

Create a test file to verify the installation:

test-installation.ts
import { CipherionClient } from '@cipherion/client';

console.log('Cipherion SDK installed successfully!');

Run the file:

npx ts-node test-installation.ts
# or
node test-installation.js

TypeScript Configuration

If using TypeScript, ensure your tsconfig.json includes:

tsconfig.json
{
  "compilerOptions": {
    "target": "ES2020",
    "module": "commonjs",
    "lib": ["ES2020"],
    "esModuleInterop": true,
    "skipLibCheck": true,
    "strict": true
  }
}

Next Steps