i'm getting the following error in the log:
[ 35.300] [INFO] [source file:///index.html:24]: Server responded to request from ::ffff:10.10.10.102
[ 35.301] [ERROR] [source module.js:340]: Uncaught Error: Cannot find module '/storage/sd/mysql'
i'm trying to access an sql database with nodejs:
mysql = require(storagePrefix + '/mysql');
connection = mysql.createConnection(
{
host:"10.10.10.102",
port:3306,
user:"root",
password:"password1",
database:"playlistdb"
});