Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

runme

Package Overview
Dependencies
Maintainers
3
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

runme

A JavaScript module to use Runme in Node.js, Deno or browser environments

  • 0.4.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
128
increased by137.04%
Maintainers
3
Weekly downloads
 
Created
Source

Runme.js Test Changes npm version deno module

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

Keywords

FAQs

Package last updated on 17 Dec 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc