this repo has no description
0
fork

Configure Feed

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

at main 9 lines 225 B view raw
1import { JoseKey } from "@atproto/oauth-client-node"; 2 3async function main() { 4 const kid = Date.now().toString(); 5 const key = await JoseKey.generate(["ES256"], kid); 6 console.log(JSON.stringify(key.privateJwk)); 7} 8 9main();