Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
src/ | 25-Sep-2023 | - | 76,650 | 57,944 | ||
LICENSE | D | 24-Sep-2023 | 1.1 KiB | 22 | 17 | |
README.md | D | 24-Sep-2023 | 858 | 23 | 15 | |
package.json | D | 24-Sep-2023 | 1.4 KiB | 67 | 66 |
README.md
1# Opal Runtime for Asciidoctor.js 2 3[](https://github.com/asciidoctor/opal-node-runtime/actions/workflows/build.yml) 4[](https://www.npmjs.com/package/@asciidoctor/opal-runtime) 5 6 7:fire: **CAUTION**: This library is a _highly optimized_ version of the Opal runtime that contains the *bare minimum to run Asciidoctor*. 8If you are looking for a general purpose Opal runtime, please use https://www.npmjs.com/package/opal-runtime. 9 10## Usage 11 12```javascript 13import Opal from '@asciidoctor/opal-runtime' 14// Now let's have fun with Opal! 15``` 16 17This library is also available as a CommonJS module: 18 19```javascript 20const Opal = require('@asciidoctor/opal-runtime') 21// Now let's have fun with Opal! 22``` 23