Attributes
Includes Deno configuration
Repository
Current version released
2 years ago
Dependencies
std
Runme.js
A JavaScript module to use Runme in Node.js, Deno or browser environments.
Runme.js contains the the Runme CLI as WASM and allows to access its functionality through a simple JavaScript interface.
Install
You can run this module in Node.js and Deno environments.
Node.js
Install the module through NPM:
$ npm install runme
# or Yarn
$ yarn add runme
You can also install the package globally and it as a CLI, e.g.:
npm i -g runme
runme list
Deno
You can import the module directly from the Deno module hosting service via https://deno.land/x/runme@0.2.3/mod.ts
.
Usage
The module exposes the following methods:
parse
Parse markdown into AST:
import { parse } from 'runme'
// or when using Deno:
// import { parse } from 'https://deno.land/x/runme@0.2.3/mod.ts'
console.log(await parse('## Hello World\n'))
/**
* outputs:
* [{ markdown: '## Hello World' }]
*/
Copyright 2022 © Stateful – Apache 2.0 License