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

solidnotebook

v0.1.5

Published

*Because our notes ought to be on a solid footing.*

Downloads

17

Readme

SolidNotebook

Because our notes ought to be on a solid footing.

Upcoming full release:

  • Zig-based native app + a web version
  • Rich Markdown editing
  • Diagrams/slides: embedded in the Markdown documents or on their own
  • Annotate anything with shapes / pencil strokes, including the Markdown text and its margins
  • 100% P2P live collaboration
  • 100% free / libre / open source, user-oriented, and analytics-free
  • 100% deterministic build
  • 100% open protocols, formats, and APIs for building upon

For code fragments in the Markdown:

  • Jupyter and VSCode integration, replacing a subset of their frontends for latency and quality reasons
  • Custom integrations via API

ETA: TBD

Want an email when it's released? Get in touch: [email protected]

Published early: a small subset of the web version, as a diagram collaboration library

Running the library's sample app

node examples/web-examples/server.js

From multiple browsers windows, visit http://localhost:3000/

Press r for Rectangle mode, p for pencil mode, and z to undo. The connection instance is made available as window.conn if you'd like to explore it.

Using the library

<script src="SolidNotebook-0.1.5.min.js" type="text/javascript"></script>
const conn = new SN.Connection({
    containerId: 'my-container',
    containerSize: { width: 400, height: 460 },
    backgroundColor: '#333333',
    strokeWidth: 2,
    horizontalPadding: 40,
    verticalPadding: 20,
    diagramLoadingStateHTML: '...',
    connectionId: Math.random().toFixed(16).substr(2),
    diagrams: [
        { width: 800, height: 600, backgroundImage: '/slides/1.jpg' },
        { width: 800, height: 600, backgroundImage: '/slides/2.jpg' },
        { width: 800, height: 600, backgroundImage: '/slides/3.jpg' },
    ],

    // SN is transport-agnostic.
    // When it has a message to send, you handle that via this callback:
    onOutboundMessage: (message) => {
        myMessageBus.send(JSON.stringify(message));
    }
})

// When you get a message, tell SN
myMessageBus.on('message', (json) => {
    const message = JSON.parse(json);
    conn.handleInboundMessage(message);
})

conn.setMode('rectangle');    // 'rectangle', 'pencil', or null
conn.setColor('#FF0000');     // only this color format is supported
conn.setOpacity('0.3');
conn.setBroadcastScroll(false);
conn.setAllowScroll(false);
conn.getItems();