1.3.0 • Published 2 years ago

headless-mermaid v1.3.0

Weekly downloads
164
License
MIT
Repository
github
Last release
2 years ago

headless-mermaid

A mermaid.js handler for server-side rendering for Node.js.

Why and What

mermaid.js needs a browser to render the diagrams which makes it a challenge to render scalable vector graphics for server-side applications. headless-mermaid makes use of a headless-chromium to render the graphics and return the scalable vector graphic element.

Usage

Installation

Install using npm:

$ npm install headless-mermaid

Calling the API

headless-mermaid uses async and await functionalities to handle interactions. The module can be implemented using async/await or by handling the returned Promise <string>.

execute(code \, config? \, script? \)

The execute function takes mermaid code with optional configurations and version number as parameters and on success returns the scalable vector graphic rendered from the mermaid code.

Configuration

The configuration is the same as one you would use in normal mermaid.initialize() calls.

Script

The script parameter defaults to mermaid.min@8.5.2. headless-mermaid uses cdnjs to access mermaid API in the template. The script and version can be adjusted with a script identifier as <filename[.js]>@<version>. The .js in file name is optional. This parameter can only be changed to a version supported by cdnjs. You can see the supported file names and versions from here.

Example of usage

async/await

const mermaid = require("headless-mermaid"),
  fs = require("fs");

let config = {
    theme: "forest",
    sequence: {
      showSequenceNumbers: true,
    },
  },
  code = `
sequenceDiagram
Alice ->> Bob: Hello Bob, how are you?
Bob-->>John: How about you John?
Bob--x Alice: I am good thanks!
Bob-x John: I am good thanks!
Note right of John: Bob thinks a long<br/>long time, so long<br/>that the text does<br/>not fit on a row.

Bob-->Alice: Checking with John...
Alice->John: Yes... John, how are you?`;

// Use try...catch to handle error
(async () => {
  let svg = await mermaid.execute(code, config); // execute(code, config, "mermaid@8.5.0"); to use mermaid.js from version 8.5.0.
  fs.writeFileSync("output.svg", svg);
})();

Promise

const mermaid = require("headless-mermaid"),
  fs = require("fs");

let config = {
    theme: "forest",
    sequence: {
      showSequenceNumbers: true,
    },
  },
  code = `
sequenceDiagram
Alice ->> Bob: Hello Bob, how are you?
Bob-->>John: How about you John?
Bob--x Alice: I am good thanks!
Bob-x John: I am good thanks!
Note right of John: Bob thinks a long<br/>long time, so long<br/>that the text does<br/>not fit on a row.

Bob-->Alice: Checking with John...
Alice->John: Yes... John, how are you?`;

// Use catch/rejection for error handling
mermaid.execute(code, config).then((svg) => {
  fs.writeFileSync("output.svg", svg);
});

Output

Rendered output.svg

Contribution

Contributions are welcome but please don't make Pull Requests for typos, grammatical mistakes, "sane way" of doing it, etc. Open an issue for it. Thanks!

1.3.0

2 years ago

1.2.1

4 years ago

1.2.0

4 years ago

1.0.1

4 years ago

0.0.1

4 years ago