···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----------------------
88+Usage with `npm` / `yarn`
99+-------------------------
10101111This package can be installed with either npm or yarn via the following commands:
1212···1717```
18181919Assuming a standard javascript bundler is setup you can import it like so:
2020+2021```js
2122const ASN1 = require('@lapo/asn1js');
2223// or with ES modules
···2425```
25262627A submodule of this package can also be imported:
2828+2729```js
2830const ASN1 = require('@lapo/asn1js/hex');
2931// or with ES modules