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

mc-screen-recorder-pro

v1.0.1

Published

World-class browser-based screen recorder with camera overlay, microphone audio, and floating popup controls

Downloads

233

Readme

Screen Recorder Pro

A world-class, browser-native screen recorder with camera overlay, microphone audio, and a floating popup control window — all served by a tiny Node.js/Express server. No cloud uploads. No extensions. Fully private.

Features

| Feature | Details | |---|---| | Screen capture | Full screen, window, or browser tab via getDisplayMedia | | Camera overlay (PiP) | Live camera composited directly into the output WebM | | Microphone audio | Echo cancellation · noise suppression · adjustable gain | | Floating popup | Real window.open() popup — move it to a second monitor while recording | | Pause / Resume | Full MediaRecorder.pause() / .resume() support | | Dark & Light theme | One-click toggle, persisted in localStorage | | Instant download | .webm auto-saved when you click Stop | | Keyboard shortcut | ⌘⇧R / Ctrl⇧R to start or stop from anywhere |

Screenshots

Screen Recorder Pro

Requirements

  • Node.js 18+
  • A modern browser (Chrome 88+, Edge 88+, Firefox 86+)
  • macOS: grant Screen Recording and Camera permissions in System Settings → Privacy & Security

Installation

npm install -g mc-screen-recorder-pro

Usage

# Custom port
mc-screen-recorder --port 4000

# Bind to all interfaces (LAN access)
mc-screen-recorder --host 0.0.0.0 --port 3000

# Don't auto-open browser
mc-screen-recorder --no-open

Then open http://localhost:3000 and click Open Recorder.

CLI Options

| Flag | Default | Description | |---|---|---| | -p, --port <n> | 3000 | Port to listen on | | -H, --host <addr> | localhost | Host/interface to bind | | --no-open | — | Skip auto-opening the browser | | -V, --version | — | Print version |

How It Works

  1. Open Recorder — launches a separate popup window (move it anywhere on your desktop)
  2. The popup immediately requests camera and microphone permissions
  3. Click Start Recording — the browser screen-share picker appears
  4. Screen + camera are composited on an off-screen <canvas> using setInterval (30 fps) — this keeps running even when the popup is in the background
  5. Click Stop & Save — the WebM is downloaded automatically

Camera Overlay Sizes

Sizes are fractions of the canvas width so they look correct at any resolution (including Retina/HiDPI):

| Size | Fraction | ~1080p | ~4K Retina | |---|---|---|---| | Small | 18% | ~346 px wide | ~518 px wide | | Medium | 26% | ~499 px wide | ~749 px wide | | Large | 36% | ~691 px wide | ~1037 px wide |

macOS Permissions

If screen recording is blocked, go to:

System Settings → Privacy & Security → Screen Recording

Add your browser to the list. Similarly for Camera and Microphone.

Tips

  • Use a headset to avoid echo in the microphone capture
  • The popup window can be dragged to a second monitor so it doesn't appear in your recording
  • The ⌘⇧R shortcut works even when the popup is not focused

License

MIT © M Chinnappan