Apache Unomi Node.js SDK
Node.js SDK for the Apache Unomi Customer Data Platform. Still a big work in progress!
Last updated
Node.js SDK for the Apache Unomi Customer Data Platform. Still a big work in progress!
Last updated
npm install --save unomi-node
# OR
yarn add unomi-nodeimport unomisdk from "unomi-node";
const unomi = unomisdk.connect({
url: "http://localhost:8181",
auth: {
username: "karaf",
password: "karaf"
}
});
export default unomi;