a tool for shared writing and social publishing
1import { JoseKey } from "@atproto/jwk-jose"; 2(async () => { 3 let key = await JoseKey.generate(); 4 console.log(JSON.stringify(key.privateJwk)); 5})();