ml-modules.root.data-hub.5.datahub-singleton.mjs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of marklogic-data-hub Show documentation
Show all versions of marklogic-data-hub Show documentation
Library for Creating an Operational Data Hub on MarkLogic
import DataHub from "/data-hub/5/datahub.mjs";
let dataHubInstance;
function instance(config = {}) {
if (!dataHubInstance) {
dataHubInstance = new DataHub(config);
}
return dataHubInstance;
}
export default {
instance
};
© 2015 - 2024 Weber Informatics LLC | Privacy Policy