• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

src/25-Sep-2023-76,65057,944

LICENSED24-Sep-20231.1 KiB2217

README.mdD24-Sep-2023858 2315

package.jsonD24-Sep-20231.4 KiB6766

README.md

1# Opal Runtime for Asciidoctor.js
2
3[![Build](https://github.com/asciidoctor/opal-node-runtime/actions/workflows/build.yml/badge.svg)](https://github.com/asciidoctor/opal-node-runtime/actions/workflows/build.yml)
4[![npm version](http://img.shields.io/npm/v/@asciidoctor/opal-runtime.svg)](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