Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@accounts/client

accounts-js2.8kMIT0.33.1TypeScript support: included

Fullstack authentication and accounts-management

rest, graphql, grant, auth, authentication, accounts, users, oauth

readme

@accounts/client

npm npm downloads codecov License

Client library to interact with an accounts-js server.

Documentation

Installation

yarn add @accounts/client

Contributing

Any contribution is very welcome, read our contributing guide to see how to locally setup the repository and see our development process.

changelog

@accounts/client

0.33.1

Patch Changes

0.33.0

Minor Changes

  • #1150 22056642 Thanks @larsivi! - Add support for magic-link strategy 🎉.

    Installation:

    yarn add @accounts/magic-link

    Usage:

    import AccountsMagicLink from '@accounts/magic-link';
    
    const accountsMagicLink = new AccountsMagicLink({});
    
    const accountsServer = new AccountsServer(
      { db: accountsDb, tokenSecret: 'secret' },
      {
        magicLink: accountsMagicLink,
      }
    );

Patch Changes