Database - kremio/audio-remote GitHub Wiki
A database is used to store CD and recordings data, as well as to record a usage history.
The decision to choose SQLite as a vendor is based on its ease of installation, its small footprint and its availability on a wide range of systems.
At the moment, here I'm just collecting some quick notes about the database design and how it is interfaced.
Installation
Install the sqlite3 module for Node, so a Node application can interface with a SQLite database
npm install sqlite3
see https://github.com/mapbox/node-sqlite3