Every project has them and these are ours...
"Where do I..."
Get a copy?
Public releases can be found at the main SQLite download page and prerelease snapshots are occassionally posted on this site as new features are added or important bug fixes are made.- ... with npm?
See: npm.md
- ... with npm?
Get support or provide feedback?
Technical support is provided, and feedback gladly received, via the SQLite forum. Those with commercial SQLite support contracts may use their usual support channels.
"How do I..."
Use this with node.js or npm?
See: npm.mdUpload/import or download/export databases?
See cookbook.mdUse persistent storage?
See persistence.mdConfigure the Content-Security-Policy (CSP) for my web server?
See csp.md
"Why is/do..."
- Why do the C-style APIs include the
sqlite3_
prefix, despite being inside a JavaScript namespace?
To keep the APIs consistent with the C docs, as the JS APIs lean heavily on them. Clients who wish to are of course encouraged to create their own namespace object and re-map the APIs however they like.