As mentioned, SQLite is not something that you install. There's no server to run like with bigger RDBMS. Instead, you install the driver for the language that you want to use, and that driver
knows how to read/write from the SQLite database file. You then use the driver API in your code.
sqlite is a wrapper library that provides an
async/await
API on top of the sqlite3 driver for node.js.
This is the interface that we will be using in this course, so bookmark the documentation for
this library, not the underlying driver. Install it together with the driver in your project with:
npm install sqlite3 sqlite
Additional resource: The module page for sqlite contains
examples of various SQL queries, with their return values documented.