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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@markerjs/mjs-diagram

v1.3.2

Published

MJS Diagram

Downloads

199

Readme

MJS Diagram — add interactive diagrams and diagramming to your web apps

MJS Diagram is a set of web components for creating and dislplaying interactive diagrams, such as Flowcharts, Mind Maps, Network Diagrams, and other.

MJS Diagram is extensible and enables you to add your own diagram types.

Installation

npm install @markerjs/mjs-diagram

or

yarn add @markerjs/mjs-diagram

Usage

See the below scenario in action and full source code here.

To add a diagram editor to your web app follow these steps:

  1. Add or import required modules (@markerjs/mjs-diagram/core, @markerjs/mjs-diagram/editor, and a stencil set (diagram type)).
  2. Add a diagram editor web component to your page.
  3. Assign a stencil set (diagram type).
  4. Setup an event handler for the saveclick event to process the results.

Here's a simple example:

On the page:

<mjs-diagram-editor id="mjsDiaEditor"></mjs-diagram-editor>

When page loads:

let editor = document.getElementById('mjsDiaEditor');

// assign imported Flowchart stencil set
editor.stencilEditorSet = flowchartStencilEditorSet;

editor.addEventListener('saveclick', (ev) => {
  // process state (represents the created diagram)
  console.log(ev.detail.state);
});

To add a diagram viewer to your web app follow these steps:

  1. Add or import required modules (@markerjs/mjs-diagram/core, @markerjs/mjs-diagram/viewer, and a stencil set (diagram type)).
  2. Add diagram viewer web component to your page.
  3. Assign a stencil set (diagram type).
  4. Load diagram configuration via the show() method.

Here's a simple diagram viewer example:

On your page:

<mjs-diagram-viewer id="mjsDiaViewer"></mjs-diagram-viewer>

When page loads:

let viewer = document.getElementById('mjsDiaViewer');
// assign imported Flowchart stencil set
viewer.stencilSet = flowchartStencilSet;
// load diagram (state)
viewer.show(savedState);

Demos

Check out MJS Diagram demos here.

More docs and tutorials

For docs and tutorials head over to the official website.

License

Linkware (see LICENSE for details) - the UI displays a small link back to the marker.js website which should be retained.

Alternative licenses are available through the marker.js website.