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 🙏

© 2026 – Pkg Stats / Ryan Hefner

mrmd-electron

v0.5.4

Published

Minimal zen markdown editor with collaborative notebooks

Readme

MRMD

Markdown notebooks with live code execution. Write, run, and collaborate — all in plain .md files.

GitHub Release< License: MIT>

paste-2026-01-25T22-09-05

Documentation


What is MRMD?

MRMD is a desktop app that turns markdown files into executable notebooks. Think Jupyter, but:

  • Plain markdown — Your documents are standard .md files. No JSON, no lock-in.
# My Analysis

Some notes about the data...

​```python
import pandas as pd
df = pd.read_csv("data.csv")
df.describe()
​```

Results appear inline, saved to the file.

Features

Execute Code Inline

Run Python, JavaScript, Bash, and more. Output streams directly into your document.

AI-Powered Editing

Press Ctrl+K to edit with AI. Describe what you want, and the AI modifies your code or text.

Real-Time Collaboration

Share your notebook URL. Changes sync instantly between all connected users.

Terminal Blocks

Embed interactive terminals with ```term blocks. Full PTY support.

Works Offline

Everything runs locally. Your code, your data, your machine.


Installation

Download

Get the latest release for your platform:

| Platform | Download | |----------|----------| | Linux | AppImage · .deb | | macOS | Intel .dmg · Apple Silicon .dmg | | Windows | Installer · Portable |

Requirements

  • Python 3.11+ with uv package manager
  • Node.js 18+ (bundled in most cases)

MRMD automatically downloads required Python packages (mrmd-python, mrmd-ai, etc.) on first run.


Quick Start

  1. Download and install MRMD for your platform

  2. Open a folder containing .md files (or create a new one)

  3. Write code blocks using standard markdown fences:

    ```python
    print("Hello, MRMD!")
    ```
  4. Run code by clicking the play button or pressing Ctrl+Enter

  5. See results appear inline, saved directly to your markdown file


Keyboard Shortcuts

| Action | Shortcut | |--------|----------| | Run cell | Ctrl+Enter | | Run cell and advance | Shift+Enter | | AI edit | Ctrl+K | | Search File or Create Files or Project | Ctrl+P |


Supported Languages

| Language | Runtime | Status | |----------|---------|--------| | Python | mrmd-python | Full support | | JavaScript | mrmd-js | Full support | | Bash | mrmd-bash | Full support | | Terminal | mrmd-pty | Interactive PTY | | R | mrmd-r | Coming soon | | Julia | mrmd-julia | Coming soon |


Architecture

MRMD uses a modular architecture:

┌─────────────────────────────────────────────────────────┐
│                    MRMD Electron                        │
│  ┌─────────────┐  ┌─────────────┐  ┌─────────────┐     │
│  │ mrmd-editor │  │ mrmd-sync   │  │ mrmd-monitor│     │
│  │ (UI)        │  │ (sync)      │  │ (execution) │     │
│  └─────────────┘  └─────────────┘  └─────────────┘     │
└─────────────────────────────────────────────────────────┘
                          │
                          ▼
┌─────────────────────────────────────────────────────────┐
│                  Python Runtimes                        │
│  ┌─────────────┐  ┌─────────────┐  ┌─────────────┐     │
│  │ mrmd-python │  │ mrmd-bash   │  │ mrmd-ai     │     │
│  │ (code exec) │  │ (shell)     │  │ (AI assist) │     │
│  └─────────────┘  └─────────────┘  └─────────────┘     │
└─────────────────────────────────────────────────────────┘
  • mrmd-editor — CodeMirror-based editor with markdown rendering
  • mrmd-sync — Yjs CRDT server for real-time collaboration
  • mrmd-monitor — Headless execution daemon (survives app restart)
  • mrmd-python — Python runtime with streaming output
  • mrmd-bash — Bash runtime for shell blocks
  • mrmd-ai — AI programs for Ctrl+K editing and completions

Development

Prerequisites

# Install uv (Python package manager)
curl -LsSf https://astral.sh/uv/install.sh | sh

# Clone the monorepo
git clone https://github.com/MaximeRivest/mrmd-packages.git
cd mrmd-packages/mrmd-electron

Running Locally

# Install dependencies
npm install

# Bundle sibling packages
npm run bundle

# Start in development mode
npm start

Building

# Build for current platform
npm run build

# Build for specific platform
npm run build:linux
npm run build:mac
npm run build:win

Related Packages

| Package | Description | Registry | |---------|-------------|----------| | mrmd-editor | CodeMirror editor component | npm | | mrmd-python | Python execution runtime | PyPI | | mrmd-ai | AI editing programs | PyPI | | mrmd-bash | Bash execution runtime | PyPI | | mrmd-sync | Yjs sync server | npm |


Contributing

Contributions are welcome! Please read our contributing guidelines before submitting PRs.

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

License

MIT License. See LICENSE for details.