A simple vault to store things locally.
$ npm install -g waultSet 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
wault store
Password:
Key: this-is-my-key
Value: http://www.google.it/wault get
Password:
Key: this-is-my-key
Here your content:
* http://www.google.it/wault del
Password:
Key: this-is-my-key
Deleted key: this-is-my-keyYou can mark the same value with different keys, for example: one, two, three
$ wault store
Password:
Key: one two three
Value: this is the valueObtain a single key value
$ wault get
Password:
Key: one
Here your content:
* this is the valueThe 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