I'm trying to perform SQL SELECT statements on a MariaDB table using Node.js, then pass the result to a web interface. I've successfully used the mySQL module to connect to the database and execute a SQL query, returning the selected rows to console.log() in the Node.js shell (Windows 10).
How can I take this output from Node.js and display it in a simple front-end interface? If my research is correct, I believe the solution involves Express and Angular, but I can't seem to figure out the specifics.
Any help or advice is greatly appreciated. Thank you!