Safe and secure file system key/value store.
npm install sysvault
var vault = require('sysvault').getInstance({
pwd: 'mypassword'
});
vault.put('hello', 'world');
vault.flush(); // persists all transient keys to the local filesystem, encrypted
var unencrypted = vault.get('hello');
npm test