DEV Community

Cover image for Run your README.md like a notebook in VS Code
Sebastian Tiedtke
Sebastian Tiedtke

Posted on • Updated on

Run your README.md like a notebook in VS Code

💡 TLDR; Runme's project website's got the cliff notes for you: https://runme.dev/

In our ongoing efforts to make documentation more reliable and less susceptible to bit-rot, we released the runme CLI (renamed from rdme) back in August. The CLI lets you effortlessly execute shell blocks inside your README.md docs from the terminal. We’ve been pleasantly surprised how well it was received. Thank you all for the comments and feedback!

Zero-changes required to turn your README.md into a runnable notebook

Zero-changes required to turn your README.md into a runnable notebook

Today we want to take Runme a step further and break out of the confides of the terminal. Anecdotally (yet not the sole motivator) one of the more notable comments in response to the runme CLI (renamed from rdme) was this:

💡 Install Runme from the VS Code marketplace or search runme inside of the Extension Panel

Noteworthy response to runme's CLI

The point’s well taken! We wholeheartedly agree that it’s important to READ your README.md before running the commands it describes. With today’s Runme release, this just got a whole lot easier:

Literally execute your [README.md](http://README.md) by simply clicking play buttons

Literally execute your README.md by simply clicking play buttons

Breaking Out of the Terminal

We wanted to expand beyond Runme’s CLI implementation to:

  1. Enable contributors to both learn about and interactively run docs
  2. Empower maintainers to control and curate the developer execution experience
  3. Encourage contributors to make suggestions about the Readme experience

We took a good look around and found inspiration in the Data Science Community: DS loves Jupyter Notebooks! Notebooks elegantly interleave code, computations, numbers, and narrative to lean on the dynamic where scientists prepare notebooks that can be consumed without much fuss by anybody.

Longer clip and introduction available at [https://www.codecademy.com/article/introducing-jupyter-notebook](https://www.codecademy.com/article/introducing-jupyter-notebook)

Longer clip at https://www.codecademy.com/article/introducing-jupyter-notebook

A notebooks inherent ability to reevaluate (literally run) every paragraph (input & output cells), in a low-code fashion, naturally aids a reader’s comprehension of the information laid out in front of them. This enables improvements to notebooks to be easily upstreamed using Pull Requests as notebooks live in version-tracked repos.

Bingo 💡! It turns out that repo maintainers and contributors have a similar relationship to the DS community when it comes to technical documentation.

From README to RUNME

After a fair amount of experimentation, we decided to build a VS Code Extension UX on top of the Runme parser. This extension will now make your README.md (onboarding and runbook docs) available within a VS Code powered Notebook Experience requiring zero changes to the underlying markdown. To showcase an end-to-end example, we’ve assembled a repo https://github.com/stateful/runme.dev (backing https://runme.dev) using Deno’s Fresh web framework, a CMS, testing, and deployment. Here we go:

💡 Install Runme from the VS Code marketplace or search runme inside of the Extension Panel

Execution Controls and More

Runme transparently parses README.md files into its constituents sequences (arbitrary markdown) and executable blocks (e.g. shell) that describe your apps and services.

Leveraging VS Code’s Notebook APIs (that underpin notebook rendering) Runme displays your README.md (or any other markdown file) as an input & output cell in a notebook.

Forgo tedious copy & paste with notebook-style run controls

Forgo tedious copy & paste with notebook-style run controls

These notebook entries enable:

  1. Per block execution controls
  2. Shell support & terminal integration
  3. Basic ENV support across notebook cells

Curate Your Notebook Experience

Attributes let maintainers control various aspects of the Developer Experience via simple annotations (full list available here) inside your README’s code blocks. Ordinary markdown viewers will just ignore them. Sharing and merging in notebook changes is just a git clone, git push or a pull request away.

Annotate your fence code blocks to curate your shell execution

Annotate your fence code blocks to curate your shell execution

Beyond Shell and Terminal

To provide broad compatibility with existing READMEs and their potential usage of CLI tooling we chose to first unlock shell execution in Runme Notebooks. However, just like Jupyter has first-class integrations with plotting libraries and other rich visual renderers, we saw an opportunity to enrich the UX by going beyond the text representation and bring in rich web experiences.

To showcase how this will work, we started with our friends at Deno 🦕:

Deploy to preview and production with ease

Deploy to both Deno's preview and production with ease

We are envisioning a world where instead of logging into dispersed cloud web consoles (made available by service providers), you could just drop a web component into a cell that exposes a programmable UX for different parts of their APIs inside of your Runme Notebook. We believe that this approach has lots of potential to lead to a more concise and maintainable way to document full stack applications and services.

What do you think?

Interoperability With the CLI

While we believe that Runme Notebooks will provide a much better onboarding experience for new contributors, we understand that maintainers and power contributors may want to skip ahead. The same is true for execution inside of CI/CD, which is why we designed Runme to function in a headless way via the runme CLI.

Interoperability with CLI

Interoperability with CLI

We are still experimenting with UX and deciding where to draw runme's architectural boundaries and working to achieve broader interoperability (e.g handling ENV vars in the CLI). One of our goals is to maintain a symbiosis between CLI and Notebook implementations to achieve the best possible Developer Experience for reliably runnable documentation.

💡 Install Runme from the VS Code marketplace or search runme inside of the Extension Panel

Get Involved

We chose to release Runme early as an invitation to the dev community to participate in it’s on-going development. Both the extension and CLI are still under heavy development and haven’t yet undergone extensive battle testing. Please send us bug reports and feature requests if anything gets in your way.

Here are a few known limitations you should be aware of in this alpha release:

  • Notebooks are currently read-only, to modify your notebook please edit the underlying Markdown/README.md as text file. We absolutely want to support bidirectional editing in the future.
  • Be cautious with environment variables interleaved within code blocks. The stateful execution of the notebooks (shell/bash-only; no PowerShell on Windows yet) leverages a naive implementation where the VS Code extension prompts for ENV var values and attempts to expand them. In essence, it does not match an interactive bash/shell session (yet).
  • We continue experimenting with aspects of user/developer experience including the passing of information/variables from cell to cell, ENV var handling that more closely matches shell a session, and more robust markdown handling.

Come find us and let’s chat about Runme (here’s my email or join discord), we are excited to hear your thoughts!

Thank you.

Top comments (15)

Collapse
 
sinewalker profile image
Mike Lockhart

This is super exciting! I often find myself wishing that I could use Jupyter Notebooks in other contexts where the project isn't really using Python/R and is more about system administration, installing toolchains, or setting up development servers or workstations. In those situations, installing Python/Jupyter and a kernel and so on just to run a shell blob is overkill.

RUNME is an ideal solution here, and brings us back towards literate computing for broader devops.

Collapse
 
sourishkrout profile image
Sebastian Tiedtke

Author here: Thanks, Mike! Let us know how it goes and don't hesitate to report bugs you'll run into. I'd be curious to hear more about your use-cases if you can spare a few minutes (promise, i'll keep it light). Please let me know!

Collapse
 
sirajulm profile image
Sirajul Muneer

Wow! This is really exciting piece of code! I would love to try it this week itself. Just curious to know how will it support interpolation for env variables if I want to pass in some secret for example for .env file or something like that? Or even a user input?

Collapse
 
sourishkrout profile image
Sebastian Tiedtke

Hi Sirajul, author here. Great question. In the current release, you can leverage export VAR_X_1="default" to prompt users and have them confirm the value, more details here: github.com/stateful/vscode-runme#e.... It's flexible enough for this early stage but does not mirror sourcing files into the ENV etc yet. This is an area we're working on improving and I'd love to hear your feedback when you get a chance to use Runme this week. Let us know what you're running up against so we can put it on the roadmap! Thank you.

Collapse
 
shmuelhizmi profile image
shmuelhizmi

This is awesome

Collapse
 
sourishkrout profile image
Sebastian Tiedtke

Thanks, we appreciate it!

Collapse
 
rnian profile image
Nan

cool~

Collapse
 
sourishkrout profile image
Sebastian Tiedtke

Let us know how it goes for you. Also check out the project's website: runme.dev/

Collapse
 
ravidsinghbiz profile image
Ravi D. Singh

This is pretty cool - Need to try it myself and let you know.

Collapse
 
sourishkrout profile image
Sebastian Tiedtke

Very curious to see how it goes for you. Please send me an email or find us on Discord! Thanks Ravi.

Collapse
 
vinceamstoutz profile image
Vincent Amstoutz • Edited

I tried your extension after seeing this post and it's a great tool so I'll give you a 5 star rating on VS Code marketplace! I hope you a successful continuation for this clever and useful project.

Is it planned to make an extension for Jetbrains (PHPStorm, Webstorm etc)?

Collapse
 
sourishkrout profile image
Sebastian Tiedtke

Hi Vincent, author here, thanks for the praise! Much appreciated.

Are you a user of both VS Code and Jetbrains IDEs? We are working on what's next for Runme and I'd very much encourage you to create a feature request here please: github.com/stateful/vscode-runme/i...

Runme's roadmap will likely be focus on strengthening its foundation first before broadening to other IDEs. However, we are very much welcoming community input.

Thank you!

Collapse
 
vinceamstoutz profile image
Vincent Amstoutz

Hi Sebastian!

On personal projects I use VS Code (for licensing reasons) and on professional projects I use as soon as possible the JetBrains IDEs for their powerful integrations which save me a lot of time.

I understand perfectly your roadmap and there is no problem it's already a huge work!
I keep this in the back of my mind if I found a PR or something like that that can help you and your team.

Have a good dev session!

Collapse
 
onionhammer profile image
Erik O'Leary

What about PowerShell on NOT windows? It's a cross platform shell

Collapse
 
sourishkrout profile image
Sebastian Tiedtke

Hi Erik, author here, what platform are you using PowerShell on? Linux?

Would you mind creating a feature request ticket here please github.com/stateful/vscode-runme/i...? Adding as much detail as possible. Thank you!

Since Runme is in its infancy, we wanted to focus on a few features and do them well, hence shell-only support in this release. It does, by no means, mean that PowerShell with or without Windows can not be on Runme's roadmap.

Thanks for the feedback!