a collection of lightweight TypeScript packages for AT Protocol, the protocol powering Bluesky
atproto bluesky typescript npm
101
fork

Configure Feed

Select the types of activity you want to include in your feed.

docs(cbor): explain atproto cbor a little

Mary 595ba585 359ed3b1

+6
+6
packages/utilities/cbor/README.md
··· 2 2 3 3 DAG-CBOR codec that deals in AT Protocol's HTTP wire format. 4 4 5 + - Only JSON types are recognized and nothing else (sorta), this means: 6 + - No `Map` objects, it will always be plain objects with string keys 7 + - No `undefined` values, it will be skipped or will throw an error 8 + - No tagged value support other than CID, which gets converted to a cid-link interface 9 + - Same goes for byte arrays, gets converted to a byte interface 10 + 5 11 ```ts 6 12 import { encode } from '@atcute/cbor'; 7 13