I read and try every suggestion on the forum but nothing seems to work. Do you have any suggestions on how I can solve this problem, in order to move on with the project?
Newer versions of node don’t work with older versions of sqlite3. The solutions are to either downgrade to an older version of node, install a node version manager and switch to an older version, or to use a newer version of sqlite3 for the project.
This worked for me after making the change in package.json and running npm install again . Nothing else in the project needed to be adjusted to complete it.
Thank you very much for your response. I made the change in package.json as you told me, and it works.
Just a reminder for those of you who, like me, are struggling with this problem: after you make the changes in package.json don’t forget to save the changes!!!