How to connect to a sqlite db from a React app? How to connect to a sqlite db from a React app? sqlite sqlite

How to connect to a sqlite db from a React app?


ReactJS is mostly a front end framework, you should create a backend server.

Some NPM packages are not compatible with front-end JS application.

Your react application will call the server and the server manipulate the DB transactions. You can for example use express js. Useful docs below :

ExpressJS - SQLite doc

API Request from react app