Skip to content
This repository has been archived by the owner on Jul 15, 2022. It is now read-only.

micheleriva/unomi-node

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

53 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Apache Unomi

Getting Stared

You can install the Apache Unomi Node.js SDK using npm or yarn:

npm install --save unomi-node
yarn add unomi-node

Connect to Unomi

You can connect to Unomi using the connect function:

import unomisdk from "unomi-node";

const unomi = unomisdk.connect({
  url: "http://localhost:8181",
  auth: {
    username: "karaf",
    password: "karaf"
  }
});

export default unomi;

From now, everytime we refer to the variable unomi, we're referring to the exported above Unomi instance. Continue reading on GitBook!

LICENSE

Apache 2.0