Files
remanso-jetstream/main.ts
2026-02-07 22:19:28 +01:00

40 lines
1022 B
TypeScript

import { Jetstream } from "@skyware/jetstream";
const jetstream = new Jetstream({
wantedCollections: [
"site.standard.graph.subscription",
"site.standard.publication",
"site.standard.document",
"space.litenote.note",
],
});
// Handle standard posts
jetstream.onCreate("site.standard.graph.subscription", (event) => {
// Check if it references litenote content
const { did, commit } = event
console.log(did, commit);
});
jetstream.onCreate("site.standard.publication", (event) => {
// Check if it references litenote content
const { did, commit } = event
console.log(did, commit);
});
// Handle standard posts
jetstream.onCreate("site.standard.document", (event) => {
// Check if it references litenote content
const { did, commit } = event
console.log(did, commit);
});
// Handle your custom posts
jetstream.onCreate("space.litenote.note", (event) => {
// Process litenote-specific data
const { did, commit } = event
console.log(did, commit);
});
jetstream.start();