Returns the value of the provided key.
Last updated 3 years ago
Was this helpful?
Parameter
Default
Description
key
The key to get the value from
decrypt
false
Whether or not to decrypt the returned value
Returns
Any
Value of the provided key
db.set('Greeting', 'Hello World'); // 'Hello World' db.get('Greeting'); // 'Hello World'
Also allows the use of dot notation:
db.set('user', { name: 'Peter', age: 19 }); // { name: 'Peter', age: 19 } db.get('user.name'); // 'Peter' db.get('user.age'); // 19 db.get('user.hobbies'); // undefined