Dashboards.JS can connect to SQL databases (MySQL, PostgreSQL, MS SQL and others) through a small Node.js data-adapter service.

Run the adapter as an HTTP server.
var http = require("http");
var adapter = require("stimulsoft-data-adapter");

function accept(request, response) {
    response.setHeader("Access-Control-Allow-Origin", "*");
    var data = "";
    request.on('data', buffer => data += buffer);
    request.on('end', function () {
        var command = adapter.getCommand(data);
        adapter.process(command, result => response.end(adapter.getResponse(result)));
    });
}

http.createServer(accept).listen(9615);

How it works. The browser-side engine posts data commands to this Node service, which runs the actual SQL and streams results back — bridging client dashboards to server databases.

By using this website, you agree to the use of cookies for analytics and personalized content. Cookies store useful information on your computer to help us improve efficiency and usability. For more information, please read the privacy policy and cookie policy.