Skip to content

jokio/sdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Jok SDK

This SDK covers following service:

  • Room
  • Timer

Room

Api:

  • sendEvents - send list of events
  • send - send list of events, action, state
const roomApi = new JokRoomApi({
  apiUrl: "https://room.jok.io",
  authToken: "[AUTH_TOKEN]",
});

const res = await room.sendEvents("tenant", "room1", [
  {
    data: {
      hello: "there",
    },
  },
]);

Timer

Api:

  • setTimeout
  • clearTimeout
  • getTimeout
const timerApi = new JokTimerApi({
  apiUrl: "https://timer.jok.io",
  authToken: "[AUTH_TOKEN]",
});

About

SDK to use Jok services

Resources

Stars

Watchers

Forks

Packages

No packages published