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