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

outframe

v1.0.9

Published

JavaScript and TypeScript library for an easy solution to expanding your websites across multiple monitors / windows

Readme

outframe.js

JavaScript/TypeScript library for an easy solution to expanding your websites across multiple monitors / windows on desktop devices.

Online Demo

here

Compiling / Setup

None needed, no dependencies either. All code is in src/index.mjs.

Just run npm i outframe in a project directory, or use your own package manager, or include via ES6 modules:

import { outframe, getOutframeDocuments } from "https://unpkg.com/outframe@latest/src/index.mjs"

Quickstart for the midnight reviewers

  1. Create a new folder and open it. Eg: mkdir i_cant_use_a_gui && cd i_cant_use_a_gui
  2. This is a library, first create a simple index.html file containing a test website. sample code here.
    • That's wget -O index.html https://raw.githubusercontent.com/ZXMushroom63/outframe.js/refs/heads/main/docs/index.html
    • Different capitalisation in cURL curl -o index.html https://raw.githubusercontent.com/ZXMushroom63/outframe.js/refs/heads/main/docs/index.html
  3. Serve with a http server. eg: python -m http.server 3000 in the same folder as the index.html file
    • Don't have python installed? npx http-server -p 3000
    • Don't have the node ecosystem installed? php -S localhost:3000
    • Don't have PHP? (good) ruby -run -e httpserver -p 3000
    • Don't have ruby? dotnet run --urls "http://localhost:3000"
    • Don't have dotnet? (also good). simply build your own memory safe http server in rust!
  4. Open http://localhost:3000/ in a browser of your choice.
    • That's: chromium http://localhost:3000/
    • Or: firefox http://localhost:3000/
    • Or even: chrome http://localhost:3000/ if you like being tracked by google!
    • In fact, any spec-following browser will work!

Usage

here