Package Exports
- jwa-purejs
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (jwa-purejs) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
jwa-purejs
A pure JavaScript implementation of the RFC 7518 ES256 digital signature algorithm.
This library is a drop-in replacement for the popular jwa package.
I wrote it to remove the dependency on crypto-browserify.
Installation
yarn add jwa-purejsUsage
webpack.config.js
module.exports = {
resolve: {
alias: {
jwa: 'jwa-purejs',
}
}
}webpack Command Line
webpack --resolve-alias jwa=jwa-purejs