1.0.6 • Published 4 years ago

seks v1.0.6

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

seks

Secure Key Storage

Install

cli tool globaly

npm i seks -g

or core

npm i seks --save

Run

Start app with support of seks using cli interface

seks [command]

Also you can start it in terminal mode

seks

Examples

Simple example

const { Manager } = require('seks');

let db = new Manager({
    password: 'youKey'
});

db.set('one', 'echo');

setTimeout(() => {
    console.log(db.get('one'));
}, 2000);

Using CLI tool

Notice: You must not pass params to class constructor. Write it to test.js.

const { Manager } = require('seks');

let db = new Manager;

db.set('one', 'echo');

setTimeout(() => {
    console.log(db.get('one'));
}, 2000);

and start it

seks node test.js

CLI

Methods:

  1. help
  2. set
  3. get
  4. update
  5. version

License

MIT

1.0.6

4 years ago

1.0.2

4 years ago

1.0.5

4 years ago

1.0.3

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago