dotparser
TypeScript icon, indicating that this package has built-in type declarations

1.1.1 • Public • Published

dotparser

Parser of GraphViz dot file format.

Build Status

usage

 var parse = require('dotparser');
 var ast = parse('graph g {}');

 // ast is now an abstract syntax tree of an empty graph:
 // [{
 //   "type": "graph",
 //   "children": [],
 //   "id": "g"
 // }]

why?

The produced output is not bound to any specific graph library. It can be used by graph library authors to transform dot files into their own graph representation.

This implementation is capable of parsing all graphs from standard graphviz test suite.

install

With npm do:

npm install dotparser

compiling grammar

If you've changed grammar and want to have an updated parser, run this:

npm start

This will generate a new parser and save it into grammar/dot.js file

license

MIT

Package Sidebar

Install

npm i dotparser

Weekly Downloads

11,958

Version

1.1.1

License

MIT

Unpacked Size

318 kB

Total Files

12

Last publish

Collaborators

  • anvaka