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.
yarn add jwa-purejs
webpack.config.js
module.exports = {
resolve: {
alias: {
jwa: 'jwa-purejs',
}
}
}
webpack Command Line
webpack --resolve-alias jwa=jwa-purejs