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?
The paths for the dataFile
and collectionsFolder
options, if provided, must be absolute.
If you are working with a large amount of data, it's highly recommended that the autoSave
option is set to false
and that you manually save the changes with .
The database provide methods (and many more) for handling data. For more details for each method, please head over to the .
These structures allow you to store data in a more organized way. They are typically used to store information where every entry share a similar or even the same structure (e.g. users, posts, etc.). Collections provide methods to easily handle the data, easier than storing everything in the Database with simple key-value pairs.
In order to reduce the queries, you can provide default values for a collection, which will be automatically assigned to the entries when created. Here is an example:
Now, queries like this:
Can be replaced with this:
Encrypting and decrypting data will increase your code's execution time a little.
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.
For more details, please head over to the page.
Collections provide methods (and many more) for handling data. For more details for each method, please head over to the .
Simpl.DB allows you to encrypt and decrypt data. This is useful to store important data such as passwords or secret tokens. In order to keep the package as speedy as possible, only the and methods support encryption and decryption, respectively.
To enable these functionalities, you must have an Encryption Key (you can read more about encryption keys ).
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 (not recommended).