UNPKG

@e280/authlocal

Version:

User-sovereign login system for everybody

12 lines 539 B
// // this file exports everything the consumer app needs. // the comments tell a linear story about the flow. // // we are connected to the authority via a postmessage api. export { makeAppFns } from "../postmessage/app-fns.js"; export { setupInApp } from "../postmessage/setup-in-app.js"; // we verify the session as a login object. export { Login } from "../concepts/session/login.js"; // we verify claim tokens, on our serverside or clientside. export { verifyClaim } from "../concepts/claim/verify.js"; //# sourceMappingURL=app.js.map