···5566An example page that can decode Base64-encoded (raw base64, PEM armoring and `begin-base64` are recognized) or Hex-encoded (or local files with some browsers) is included and can be used both [online on the official website](https://lapo.it/asn1js/) or [offline (ZIP file)](https://lapo.it/asn1js/asn1js.zip).
7788+Usage with npm / yarn
99+--------------
1010+1111+This package can be installed with either npm or yarn via the following commands:
1212+1313+```
1414+npm install @lapo/asn1js
1515+# or with yarn
1616+yarn add @lapo/asn1js
1717+```
1818+1919+Assuming a standard javascript bundler is setup you can import it like so:
2020+```js
2121+const asn1js = require('@lapo/asn1js');
2222+// or with ES modules
2323+import asn1js from '@lapo/asn1js';
2424+```
2525+2626+A submodule of this package can also be imported:
2727+```js
2828+import Hex from '@lapo/asn1js/hex';
2929+```
3030+831ISC license
932-----------
1033