@hyperledger/aries-askar-shared
TypeScript icon, indicating that this package has built-in type declarations

0.2.1 • Public • Published

Aries Askar Shared

This package does not contain any functionality, just the classes and types that wrap around the native NodeJS / React Native functionality

Platform independent setup

If you would like to leverage the Aries Askar libraries for JavaScript in a platform independent way you need to add the @hyperledger/aries-askar-shared package to your project. This package exports all public methods.

Before calling any methods you then need to make sure you register the platform specific native bindings. You can do this by importing the platform specific package. You can do this by having separate files that register the package, which allows the React Native bundler to import a different package:

// register.ts
import '@hyperledger/aries-askar-nodejs'
// register.native.ts
import '@hyperledger/aries-askar-react-native'

An alterative approach is to first try to require the Node.JS package, and otherwise require the React Native package:

try {
  require('@hyperledger/aries-askar-nodejs')
} catch (error) {
  try {
    require('@hyperledger/aries-askar-react-native')
  } catch (error) {
    throw new Error('Could not load Aries Askar bindings')
  }
}

How you approach it is up to you, as long as the native binding are called before any actions are performed on the Aries Askar library.

Version Compatibility

The JavaScript wrapper is versioned independently from the native bindings. The following table shows the compatibility between the different versions:

Aries Askar JavaScript Wrapper
v0.2.9 v0.1.0, v0.1.1
v0.3.1 v0.2.0

Readme

Keywords

none

Package Sidebar

Install

npm i @hyperledger/aries-askar-shared

Weekly Downloads

1,223

Version

0.2.1

License

Apache-2.0

Unpacked Size

117 kB

Total Files

92

Last publish

Collaborators

  • peter.somogyvari
  • hyperledger-ghci
  • hyperledger-lf