How to use the node-red-contrib-viseo-nosql-manager.dbRegistry.list function in node-red-contrib-viseo-nosql-manager

To help you get started, we’ve selected a few node-red-contrib-viseo-nosql-manager examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github NGRP / node-red-contrib-viseo / node-red-contrib-nosql / node-handover.js View on Github external
RED.httpAdmin.get('/nosql/handover/', function(req, res) {
        res.json(databaseRegistry.list);
    });
github NGRP / node-red-contrib-viseo / node-red-contrib-nosql / node-nosql.js View on Github external
RED.httpAdmin.get('/nosql/manager/', function(req, res) {
        res.json(databaseRegistry.list);
    });