Getting Started
Please read the Introduction section if you haven't already.
Last updated
Was this helpful?
Please read the Introduction section if you haven't already.
Last updated
Was this helpful?
Now that you have successfully installed Simpl.DB in your project, you will need to create a JSON file, which is where your data will be stored.
filePath
path must be absolute.
It's highly recommended that the saveOnUpdate
option is set to false
and that you manually save the changes with if you are working with a large amount of data.
Simpl.DB allows you to encrypt and decrypt data. This is useful to store important data such as passwords or secret tokens. Since both encrypting and decrypting take a few seconds, in order to keep the package as speedy as possible, only the and methods support encryption and decryption.
It's highly recommended that the Encryption Key only includes numbers and uppercase and lowercase letters, since some special characters could break it.
Once you have your hands on a brand new Encryption Key, make sure you store it in a safe place, such as an environment variable in a .env
file or something similar.
To enable these functionalities, you must have an Encryption Key (you can read more about it if you want).
Since Simpl.DB uses AES256-CTR to encrypt and decrypt data, your Encryption Key must be a combination of 32 random characters. To generate yours, visit or simply write it yourself.