javascriptdiscord.jsreplitquick.db

How to fix quick.db is not installing?


I have been trying to install quick.db package on my repl.it project but on every time I try that it just crashes and gives this error: enter image description here

It was working fine before but when I reinstalled it for a reason it started crushing every time. I need this package to store information and no other packages I try with the same function work good for me. Please suggest another package or help me install quick.db.


Solution

  • GLIBC_2.29 not found error is causing outdated libc6 package. You would need to run

    sudo apt-get update
    sudo apt-get install libc6
    

    more about that on askubuntu.com
    But you would need sudo privileges. You do not have sudo privileges on repl.it.
    You should not use quick.db anyway on repl.it, because on repl.it all users information will public - this is against discord terms of service.

    Repl.it's limitation is that you cannot hide files from the public eye on free accounts, except for the .env file. This means, if you were to use a file-based or sqlite-based database (such as enmap, quick.db, nedb) your files would be visible. Since this is against the Discord Terms of Service (exposing potential user data), do not use these modules or json files to store data. Instead, you can use the Repl.It Database system to store data, or an external database server like Atlas Mongo, or Firebase. anidiots.guide