A mermaid.js handler for server-side rendering for Node.js.
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.
Install using npm:
$ npm install headless-mermaid
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>
.
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.
The configuration is the same as one you would use in normal mermaid.initialize()
calls.
The script
parameter defaults to [email protected]
. 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.
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, "[email protected]"); to use mermaid.js from version 8.5.0.
fs.writeFileSync("output.svg", svg);
})();
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);
});
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!