This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

@tanker/user-token

1.4.2 • Public • Published

User Token Travis

User token generation in JavaScript for the Tanker SDK.

Installation

The preferred way of using the component is via NPM:

npm install --save @tanker/user-token

Usage

The server-side code below demonstrates a typical flow to safely deliver user tokens to your users:

import { generateUserToken }  from '@tanker/user-token';

// Store these configurations in a safe place
const trustchainId = '<trustchain-id>';
const trustchainPrivateKey = '<trustchain-private-key>';

// Example server-side function in which you would implement checkAuth(),
// retrieveUserToken() and storeUserToken() to use your own authentication
// and data storage mechanisms:
function getUserToken(userId) {
  const isAuthenticated = checkAuth(userId);

  // Always ensure userId is authenticated before returning a user token
  if (!isAuthenticated) {
    throw new Error('unauthorized');
  }

  // Retrieve a previously stored user token for this user
  let token = retrieveUserToken(userId);

  // If not found, create a new user token
  if (!token) {
    token = generateUserToken(trustchainId, trustchainPrivateKey, userId);

    // Store the newly generated user token
    storeUserToken(userId);
  }

  // From now, the same user token will always be returned to a given user
  return token;
}

Read more about user tokens in the Tanker guide.

Development

Install yarn globally with npm install -g yarn.

After checking out the repo, run yarn to install the dependencies.

Build the package with yarn build.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/TankerHQ/user-token-js.

Readme

Keywords

none

Package Sidebar

Install

npm i @tanker/user-token

Weekly Downloads

6

Version

1.4.2

License

Apache-2.0

Unpacked Size

9.02 kB

Total Files

6

Last publish

Collaborators

  • jmounier
  • maximerety
  • tankeradmin
  • quentin.vernot.tanker