This tutorial helps you quick start an application.
import { Allotize } from "allotize-js"
const user = Allotize.Data({
route: "user/bob",
data: {
name: "Bob",
posts: 0
}
});
import { Allotize } from "allotize-js"
const chat = Allotize.BoundedChannel({
route: "chat",
size: 25
});