Skip to content

phasehq/node-sdk

Repository files navigation

Node.js SDK for Phase

SDK to integrate Phase in server-side applications running Node.js

Install

npm i @phase.dev/phase-node or yarn add @phase.dev/phase-node

Import

const Phase = require("@phase.dev/phase-node");

Initialize

Initialize the SDK with your APP_ID and APP_SECRET:

const phase = new Phase(APP_ID, APP_SECRET);

Usage

Encrypt

const ciphertext = await phase.encrypt("hello world");

Decrypt

const plaintext = await phase.decrypt(ciphertext);

Development

Install dependencies

npm install

Build

npm run build

Run tests

npm test