npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

runmd

v1.3.9

Published

Runnable README files

Downloads

867

Readme

RunMD Logo example workflow

Run code blocks in your markdown and annotate them with the output.

Creating README files is a pain, especially when it comes to writing code samples. Code gets out of date, authors get sloppy, details get omitted, etc. RunMD takes the pain out of this process.

With RunMD, your readers can trust your code blocks are runnable and that code output will be as-claimed.

Install

npm install runmd

Usage

runmd [options] input_file

Where options may be zero or more of:

  • --output=output_file file to write specify an output file
  • --watch Watch input_file for changes and rerender
  • --lame Suppress attribution footer

For example, to port an existing README.md file:

cp README.md README_js.md

Edit README_js.md to add Markdown Options (below) to your ````javascript` blocks, then ...

runmd README_js.md --output README.md

Limitations

RunMD scripts are run using Node.js' vm module. This environment is limited in "interesting" ways, and RunMD runs fast and loose with some APIs. Specifically:

  • console.log() works, but no other console methods are supported at this time
  • setTimeout() works, but all timers fire immediately at the end of script execution. clearTimeout, setInterval, and clearInterval are not supported

[Note: PRs fleshing out these and other missing APIs would be "well received"]

ES6 Imports

Some ES6 import incantations will work, however this feature should be considered very experimental at this point. Read the source for details.

NPM Integration

To avoid publishing when compilation of your README file fails:

"scripts": {
  "prepare": "runmd README_js.md --output README.md"
}

Markdown API

--run

Runs the script, appending any console.log output. E.g.:

```javascript --run
console.log('Hello, World!');
```

... becomes:

```javascript
console.log('Hello, World!');

⇒ Hello, World!
````

--run may be omitted if other options are present.

--run [context_name]

If a context_name is provided, all blocks with that name will share the same runtime context. E.g.

```javascript --run sample
let text = 'World';
```

Continuing on ...

```javascript --run sample
console.log(text);
```

... becomes:

```javascript
let text = 'Hello';
```

Continuing on ...

```javascript
console.log(text);

⇒ Hello
```

... but trying to reference text in a new context or other named context will fail:

```javascript --run
console.log(text);
```

(Results in ReferenceError: text is not defined.)

--hide

Run the script, but do not render the script source or output. This is useful for setting up context that's necessary for code, but not germane to documentation.

Welcome!

```javascript --run foo --hide
// Setup/utility code or whatever ...
function hello() {
  console.log('Hello, World!');
}
```

Here is a code snippet:

```javascript --run foo
hello();
```

... becomes:

Welcome!

Here's a code snippet:

```javascript
hello();

⇒ Hello, World!
```

"// RESULT"

Inline values for single line expressions may be displayed by appending "// RESULT" to the end of a line. Note: RunMD will error if the line is not a self-contained, evaluate-able, expression.

```javascript --run
['Hello', ' World!'].join(','); // RESULT
```

... becomes:

```javascript
['Hello', ' World!'].join(','); // ⇨ 'Hello, World!'
```

runmd Object

A global runmd object is provided all contexts, and supports the following:

runmd.onRequire

The onRequire event gives pages the opportunity to transform module require paths. This is useful if the module context in which you render markdown is different from what your readers will typically encounter. (Often the case with npm-published modules).

```javascript --hide
// Remap `require('uuid/*') to `require('./*')
runmd.onRequire = function(path) {
  return path.replace(/^uuid\//, './');
}
```

runmd.onOutputLine

The onOutputLine event gives pages the opportunity to transform markdown output.

```javascript --hide
runmd.onOutputLine = function(line, isRunning) {
  return !isRunning ? line.toUpperCase() : line);
}
```

The isRunning argument will be true for any lines that are interpreted as code by this module. Transformations do not affect interpreted source, only how source is rendered.

Return null to omit the line from the rendered output.

Recommended workflow: RunMD + Chrome + Markdown Preview Plus

There's more than one way to visualize changes to Markdown files as you edit them, but the following works pretty well for me:

  • Install the Markdown Preview Plus Chrome
  • ... Allow it to access file URLs" (in chrome://extensions tab)
  • ... Set Reload Frequency to "1 second" (in the extension options)
  • Launch runmd with the --watch option to have it continuously re-render your output file as you make changes
  • Open the output file in Chrome, and it will update in realtime as you make changes to your runmd input file(s)

Markdown generated from src/README_js.md by