jstrong

0.0.2 • Public • Published

JSTRONG

Addition to siphr explicitly for JSON objects.

Possible use cases:

  • web tokens
  • application level encryption before persisting to database

Installation

Using npm:

$ npm install --save jstrong

Usage

const jstrong = require('jstrong')(MY_SECRET_KEY);
 
const user = {
  id: 1, username: 'Homer Simpson', home_town: 'Springfield',
};
 
const strongUser = jstrong.stringify(user); // => '{"sFHg6oX9AMI7ejBsw==":"v7Shp9Tylui==",...}'
 
const plainUser = jstrong.parse(strongUser); // => { id: 1, ... }

Dependencies (1)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i jstrong

    Weekly Downloads

    2

    Version

    0.0.2

    License

    ISC

    Last publish

    Collaborators

    • davidhunt