A simple vault to store things locally
A simple vault to store things locally.
$ npm install -g waultOptions
Set the database path via env variable: WAULT_PATH=~/.wault (to have the
database at path ~/.wault. By default the database is at path
/tmp/wault.level
Use it
Create new values
wault store Password:Key: this-is-my-keyValue: http://www.google.it/Get existing values
wault get Password:Key: this-is-my-key Here your content: * http://www.google.it/Delete keys
wault del Password:Key: this-is-my-key Deleted key: this-is-my-keyMultiple keys
You can mark the same value with different keys, for example: one, two, three
$ wault store Password:Key: one two threeValue: this is the valueObtain a single key value
$ wault get Password:Key: one Here your content: * this is the valueMultiple values
The wault is always in append mode (store different values on the same key)
$ wault get Password:Key: one Here your content: * this is the value * another value